class ParseError
Inherited from: Error.
Required header: <Eclog/Error.h>
The ParseError class defines a type of error object that reports parse errors.
Name | Description |
---|---|
line | Returns the line number the parse error occurs. |
column | Returns the column number the parse error occurs. |
error | Returns the parse error code. |
id | Returns the identifier of this class. |
int line() const;
Returns the line number the parse error occurs.
int
The line number the parse error occurs.
int column() 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.
static const ErrorId& id();
Returns the identifier of this class.
ErrorId&
Reference to the identifier.