Exemplo n.º 1
0
 private void SyntaxError(string errorMessage, LogoErrorCode errorCode)
 {
     throw new LogoSyntaxErrorException(errorMessage, errorCode, scanner.ScanBuffer);
 }
Exemplo n.º 2
0
 protected LogoSyntaxErrorException(SerializationInfo info, StreamingContext context, LogoErrorCode errorCode,
                                    string scanBuffer) : base(info, context)
 {
     ErrorCode  = errorCode;
     ScanBuffer = scanBuffer;
 }
Exemplo n.º 3
0
 public LogoSyntaxErrorException(LogoErrorCode errorCode, string scanBuffer)
 {
     ErrorCode  = errorCode;
     ScanBuffer = scanBuffer;
 }
Exemplo n.º 4
0
 public LogoSyntaxErrorException(string message, Exception innerException, LogoErrorCode errorCode, string scanBuffer)
     : base(message, innerException)
 {
     ErrorCode  = errorCode;
     ScanBuffer = scanBuffer;
 }