#include <errors.h>
Errors encountered while parsing codes.
Definition at line 33 of file errors.h.
◆ ParseError()
mixal::ParseError::ParseError |
( |
int |
index, |
|
|
const std::string & |
message |
|
) |
| |
|
inlineexplicit |
Initialize error with offset and message.
Definition at line 36 of file errors.h.
36 : _index(
index), _message(message) {}
◆ index()
int mixal::ParseError::index |
( |
| ) |
const |
|
inline |
The offset in the string of code.
Definition at line 39 of file errors.h.
◆ what()
const char* mixal::ParseError::what |
( |
| ) |
const |
|
inlineoverridenoexcept |
The error information.
Definition at line 42 of file errors.h.
43 return _message.c_str();
The documentation for this class was generated from the following file: