C# Class ParseException, SRPGCK

Failed to parse the theme JSON (either bad json, or missing required fields)
Inheritance: Exception
Mostra file Open project: JoeOsborn/SRPGCK Class Usage Examples

Public Methods

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.

Method Details

ParseException() public method

Constructs a new error at the given line number and position of the input.
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

ParseException() public method

Constructs a new parse error.
public ParseException ( string error ) : System
error string A description of the error.
return System

ToString() public method

Returns a string representation describing the parse error.
public ToString ( ) : string
return string