C# Class YAMP.Errors.YAMPParseError

Any error during parsing will be noted as an instance of this class.
ファイルを表示 Open project: FlorianRappl/YAMP Class Usage Examples

Public Methods

Method Description
ToString ( ) : String

Converts to error to a string.

YAMPParseError ( Int32 line, Int32 column, String message ) : System

Creates a new parse error.

Method Details

ToString() public method

Converts to error to a string.
public ToString ( ) : String
return String

YAMPParseError() public method

Creates a new parse error.
public YAMPParseError ( Int32 line, Int32 column, String message ) : System
line System.Int32 The line of the error.
column System.Int32 The column of the error.
message String The message for the error.
return System