5 #ifndef SEMANTIC_ERROR_HPP 6 #define SEMANTIC_ERROR_HPP 17 SemanticError(
const std::string& message): std::runtime_error(message){};
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