Method | Description | |
---|---|---|
ParseException ( int line, int column, string error ) : System |
Constructs a new error at the given line number and position of the input.
|
|
ParseException ( string error ) : System |
Constructs a new parse error.
|
|
ToString ( ) : string |
Returns a string representation describing the parse error.
|
public ParseException ( int line, int column, string error ) : System | ||
line | int | The line number of the error. |
column | int | The column position of the error. |
error | string | A description of the error. |
return | System |
public ParseException ( string error ) : System | ||
error | string | A description of the error. |
return | System |