Ancestry.QueryProcessor.Parse.SyntaxException.SyntaxException C# (CSharp) Method

SyntaxException() public method

public SyntaxException ( ErrorSeverity severity, int code, string message, string details, string serverContext, int line, int linePos, TokenType tokenType, string token, AncestryException innerException ) : System
severity ErrorSeverity
code int
message string
details string
serverContext string
line int
linePos int
tokenType TokenType
token string
innerException AncestryException
return System
        public SyntaxException(ErrorSeverity severity, int code, string message, string details, string serverContext, int line, int linePos, TokenType tokenType, string token, AncestryException innerException)
            : base(severity, code, message, details, serverContext, innerException)
        {
            _line = line;
            _linePos = linePos;
            _tokenType = tokenType;
            _token = token;
        }

Same methods

SyntaxException::SyntaxException ( Lexer lexer, Exception inner ) : System
SyntaxException