C# 클래스 YAMP.Errors.YAMPParseError

Any error during parsing will be noted as an instance of this class.
파일 보기 프로젝트 열기: FlorianRappl/YAMP 1 사용 예제들

공개 메소드들

메소드 설명
ToString ( ) : String

Converts to error to a string.

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

Creates a new parse error.

메소드 상세

ToString() 공개 메소드

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

YAMPParseError() 공개 메소드

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.
리턴 System