| 22 | using namespace Suscan; |
| 23 | |
| 24 | Exception::Exception(std::string const& message) : |
| 25 | std::runtime_error("C++ API exception: " + message) |
| 26 | { } |
| 27 | |
| 28 | Exception::Exception(std::string const& file, unsigned int line, std::string const& message) : |
| 29 | Exception("expression `" + message + "' failed in " + file + ":" + std::to_string(line)) |
nothing calls this directly
no outgoing calls
no test coverage detected