blob: 1408603864cc56b5efa799ff0e94913e33b95ec8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef PARSER_SRC_EXCEPTIONS_H_
#define PARSER_SRC_EXCEPTIONS_H_
#include <exception>
namespace SimpleParser {
class parenthese_exception: public std::exception {
virtual const char* what() const throw() {
return "Invalid parenthesized expression - check your input term.";
}
};
class operator_exception: public std::exception {
virtual const char* what() const throw() {
return "Unexpected operator placement - check your input term.";
}
};
class identifier_exception: public std::exception {
virtual const char* what() const throw()
{
return "Identifier could not be correctly resolved.";
}
};
}
#endif // PARSER_SRC_EXCEPTIONS_H_
|