C# Class Lucene.Net.QueryParsers.Surround.Parser.TokenMgrError

Inheritance: System.Exception
Mostrar archivo Open project: apache/lucenenet

Public Methods

Method Description
TokenMgrError ( ) : System

No arg constructor.

TokenMgrError ( bool EOFSeen, int lexState, int errorLine, int errorColumn, string errorAfter, char curChar, int reason ) : System

Full Constructor.

TokenMgrError ( string message, int reason ) : System

Constructor with message and reason.

Protected Methods

Method Description
AddEscapes ( string str ) : string

Replaces unprintable characters by their escaped (or unicode escaped) equivalents in the given string

LexicalError ( bool EOFSeen, int lexState, int errorLine, int errorColumn, string errorAfter, char curChar ) : string

Returns a detailed message for the Error when it is thrown by the token manager to indicate a lexical error.

You can customize the lexical error message by modifying this method.

Method Details

AddEscapes() protected static method

Replaces unprintable characters by their escaped (or unicode escaped) equivalents in the given string
protected static AddEscapes ( string str ) : string
str string
return string

LexicalError() protected static method

Returns a detailed message for the Error when it is thrown by the token manager to indicate a lexical error.
You can customize the lexical error message by modifying this method.
protected static LexicalError ( bool EOFSeen, int lexState, int errorLine, int errorColumn, string errorAfter, char curChar ) : string
EOFSeen bool indicates if EOF caused the lexical error
lexState int lexical state in which this error occurred
errorLine int line number when the error occurred
errorColumn int column number when the error occurred
errorAfter string prefix that was seen before this error occurred
curChar char the offending character
return string

TokenMgrError() public method

No arg constructor.
public TokenMgrError ( ) : System
return System

TokenMgrError() public method

Full Constructor.
public TokenMgrError ( bool EOFSeen, int lexState, int errorLine, int errorColumn, string errorAfter, char curChar, int reason ) : System
EOFSeen bool
lexState int
errorLine int
errorColumn int
errorAfter string
curChar char
reason int
return System

TokenMgrError() public method

Constructor with message and reason.
public TokenMgrError ( string message, int reason ) : System
message string
reason int
return System