YAMP.Errors.YAMPParseError.YAMPParseError C# (CSharp) Method

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
        public YAMPParseError(Int32 line, Int32 column, String message, params Object[] args)
        {
            Line = line;
            Column = column;
            Message = string.Format(message, args);
        }