Plot Script
semantic_error.hpp
Go to the documentation of this file.
1 
5 #ifndef SEMANTIC_ERROR_HPP
6 #define SEMANTIC_ERROR_HPP
7 
8 #include <exception>
9 #include <stdexcept>
10 
14 class SemanticError: public std::runtime_error {
15 public:
17  SemanticError(const std::string& message): std::runtime_error(message){};
18 };
19 
20 #endif
Exception subclass to indicate semantic errors during evaluation.
Definition: semantic_error.hpp:14
SemanticError(const std::string &message)
Construct an exeption with a given message.
Definition: semantic_error.hpp:17