MIXAL
errors.h
Go to the documentation of this file.
1 #ifndef INCLUDE_ERRORS_H_
2 #define INCLUDE_ERRORS_H_
3 
4 #include <stdexcept>
5 #include <string>
6 
12 namespace mixal {
13 
15 class ExpressionError : public std::exception {
16  public:
18  explicit ExpressionError(int index, const std::string& message) : _index(index), _message(message) {}
19 
21  inline int index() const { return _index; }
22 
24  const char* what() const noexcept override {
25  return _message.c_str();
26  }
27  private:
28  int _index;
29  std::string _message;
30 };
31 
33 class ParseError : public std::exception {
34  public:
36  explicit ParseError(int index, const std::string& message) : _index(index), _message(message) {}
37 
39  inline int index() const { return _index; }
40 
42  const char* what() const noexcept override {
43  return _message.c_str();
44  }
45  private:
46  int _index;
47  std::string _message;
48 };
49 
51 class RuntimeError : public std::exception {
52  public:
54  explicit RuntimeError(int line, const std::string& message) : _line(line), _message(message) {}
55 
57  inline int line() const { return _line; }
58 
60  const char* what() const noexcept override {
61  return _message.c_str();
62  }
63  private:
64  int _line;
65  std::string _message;
66 };
67 
68 }; // namespace mixal
69 
70 
71 #endif // INCLUDE_ERRORS_H_
mixal::RuntimeError::RuntimeError
RuntimeError(int line, const std::string &message)
Definition: errors.h:54
mixal::ParseError::index
int index() const
Definition: errors.h:39
mixal::RuntimeError::what
const char * what() const noexcept override
Definition: errors.h:60
mixal::ExpressionError::ExpressionError
ExpressionError(int index, const std::string &message)
Definition: errors.h:18
mixal::ParseError::what
const char * what() const noexcept override
Definition: errors.h:42
mixal::ExpressionError::index
int index() const
Definition: errors.h:21
mixal::ParseError::ParseError
ParseError(int index, const std::string &message)
Definition: errors.h:36
mixal::RuntimeError
Definition: errors.h:51
mixal::ParseError
Definition: errors.h:33
mixal::RuntimeError::line
int line() const
Definition: errors.h:57
mixal::ExpressionError
Definition: errors.h:15
mixal::ExpressionError::what
const char * what() const noexcept override
Definition: errors.h:24