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

#include <errors.h>

Inheritance diagram for mixal::ExpressionError:

Public Member Functions

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

Detailed Description

Errors encountered while parsing an expression.

Definition at line 15 of file errors.h.

Constructor & Destructor Documentation

◆ ExpressionError()

mixal::ExpressionError::ExpressionError ( int  index,
const std::string &  message 
)
inlineexplicit

Initialize error with offset and message.

Definition at line 18 of file errors.h.

18 : _index(index), _message(message) {}

Member Function Documentation

◆ index()

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

The offset in the expression string.

Definition at line 21 of file errors.h.

21 { return _index; }

Referenced by mixal::Parser::parseLine().

◆ what()

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

The error information.

Definition at line 24 of file errors.h.

24  {
25  return _message.c_str();
26  }

Referenced by mixal::Parser::parseLine().


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