Skip to content

Latest commit

 

History

History
62 lines (36 loc) · 1.01 KB

ParseErrorException.md

File metadata and controls

62 lines (36 loc) · 1.01 KB

ParseErrorException

class ParseErrorException

Inherited from: Exception.

The ParseErrorException class defines a type of exception object that reports parse errors.

Member functions

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.

lineNumber

int lineNumber() const;

Returns the line number the parse error occurs.

Return value

int The line number the parse error occurs.


columnNumber

int columnNumber() const;

Returns the column number the parse error occurs.

Return value

int The column number the parse error occurs.


error

ParseErrorEnum error() const;

Returns the parse error code.

Return value

ParseErrorEnum The parse error code.