#include <errors.h>
Errors encountered while executing the codes.
Definition at line 51 of file errors.h.
◆ RuntimeError()
mixal::RuntimeError::RuntimeError |
( |
int |
line, |
|
|
const std::string & |
message |
|
) |
| |
|
inlineexplicit |
Initialize error with line number and message.
Definition at line 54 of file errors.h.
54 : _line(
line), _message(message) {}
◆ line()
int mixal::RuntimeError::line |
( |
| ) |
const |
|
inline |
The location of memory that is executing.
Definition at line 57 of file errors.h.
◆ what()
const char* mixal::RuntimeError::what |
( |
| ) |
const |
|
inlineoverridenoexcept |
The error information.
Definition at line 60 of file errors.h.
61 return _message.c_str();
The documentation for this class was generated from the following file: