class ParseErrorException
Inherited from: Exception.
The ParseErrorException class defines a type of exception object that reports parse errors.
Name | Description |
---|---|
lineNumber | Returns the line number the parse error occurs. |
columnNumber | Returns the column number the parse error occurs. |
error | Returns the parse error code. |
int lineNumber() const;
Returns the line number the parse error occurs.
int
The line number the parse error occurs.
int columnNumber() const;
Returns the column number the parse error occurs.
int
The column number the parse error occurs.
ParseErrorEnum error() const;
Returns the parse error code.
ParseErrorEnum The parse error code.