MIXAL
Public Member Functions | List of all members
mixal::ParseError Class Reference

#include <errors.h>

Inheritance diagram for mixal::ParseError:

Public Member Functions

 ParseError (int index, const std::string &message)
 
int index () const
 
const char * what () const noexcept override
 

Detailed Description

Errors encountered while parsing codes.

Definition at line 33 of file errors.h.

Constructor & Destructor Documentation

◆ 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) {}

Member Function Documentation

◆ index()

int mixal::ParseError::index ( ) const
inline

The offset in the string of code.

Definition at line 39 of file errors.h.

39 { return _index; }

◆ what()

const char* mixal::ParseError::what ( ) const
inlineoverridenoexcept

The error information.

Definition at line 42 of file errors.h.

42  {
43  return _message.c_str();
44  }

The documentation for this class was generated from the following file:
mixal::ParseError::index
int index() const
Definition: errors.h:39