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

#include <errors.h>

Inheritance diagram for mixal::RuntimeError:

Public Member Functions

 RuntimeError (int line, const std::string &message)
 
int line () const
 
const char * what () const noexcept override
 

Detailed Description

Errors encountered while executing the codes.

Definition at line 51 of file errors.h.

Constructor & Destructor Documentation

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

Member Function Documentation

◆ line()

int mixal::RuntimeError::line ( ) const
inline

The location of memory that is executing.

Definition at line 57 of file errors.h.

57 { return _line; }

◆ what()

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

The error information.

Definition at line 60 of file errors.h.

60  {
61  return _message.c_str();
62  }

The documentation for this class was generated from the following file:
mixal::RuntimeError::line
int line() const
Definition: errors.h:57