| 152 | } |
| 153 | |
| 154 | ParseError::ParseError(const char* file, int line, const char* function, const std::string& expression, const std::string& message) noexcept : |
| 155 | BaseException(file, line, function, "Parse Error", message + " in: " + expression) |
| 156 | { |
| 157 | GlobalExceptionHandler::getInstance().setMessage(what()); |
| 158 | } |
| 159 | |
| 160 | FileNotFound::FileNotFound(const char* file, int line, const char* function, const std::string& filename) noexcept : |
| 161 | BaseException(file, line, function, "FileNotFound", "the file '" + filename + "' could not be found") |
nothing calls this directly
no test coverage detected