|
Grammatica 1.4 Documentation | |||||||
| FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
Exception
|
+--ParseException
in ParseException.csA parse exception.
| Inner Classes, Typedefs, and Enums | |
enum |
ParseException.ErrorType
The error type enumeration. |
| Field Summary | |
override string |
Message
The message property. |
| Constructor Summary | |
ParseException( ParseException.ErrorType type, string info, int line, int column )
Creates a new parse exception. |
|
ParseException( ParseException.ErrorType type, string info, ArrayList details, int line, int column )
Creates a new parse exception. |
|
| Method Summary | |
int |
GetColumn()
Returns the column number where the error occured. |
ArrayList |
GetDetails()
Returns the additional detailed error information. |
string |
GetErrorMessage()
Returns the error message. |
ParseException.ErrorType |
GetErrorType()
Returns the error type. |
string |
GetInfo()
Returns the additional error information. |
int |
GetLine()
Returns the line number where the error occured. |
string |
GetMessage()
Returns a default error message. |
| Field Detail |
public override string Message;
| Constructor Detail |
public ParseException( ParseException.ErrorType type, string info, int line, int column );
type - the parse error type
info - the additional information
line - the line number, or -1 for unknown
column - the column number, or -1 for unknownpublic ParseException( ParseException.ErrorType type, string info, ArrayList details, int line, int column );
type - the parse error type
info - the additional information
details - the additional detailed information
line - the line number, or -1 for unknown
column - the column number, or -1 for unknown| Method Detail |
public int GetColumn();
public ArrayList GetDetails();
public string GetErrorMessage();
public ParseException.ErrorType GetErrorType();
public string GetInfo();
public int GetLine();
public string GetMessage();
|
Grammatica 1.4 Documentation | |||||||
| FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||