public ParsingException(ParserExceptionType exceptionType, Token <TokenType> token, TokenType[] expectedTokenTypes)
 {
     ExceptionType      = exceptionType;
     Token              = token;
     ExpectedTokenTypes = expectedTokenTypes;
 }
Exemple #2
0
 internal ParserException(int position, ParserExceptionType type, string message = "") : base(position, message)
 {
     this.type = type;
 }
 internal ParserException(int position, ParserExceptionType type, string message = "")
     : base(position, message)
 {
     this.type = type;
 }