C# Class YAMP.Errors.YAMPParseError

Any error during parsing will be noted as an instance of this class.
Afficher le fichier Open project: FlorianRappl/YAMP Class Usage Examples

Méthodes publiques

Méthode 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 méthode

Converts to error to a string.
public ToString ( ) : String
Résultat String

YAMPParseError() public méthode

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.
Résultat System