Error class for when some external assets are missing */
| 67 | |
| 68 | /** Error class for when some external assets are missing */ |
| 69 | class FileNotFound : public std::runtime_error |
| 70 | { |
| 71 | public: |
| 72 | /** Construct error with message |
| 73 | * |
| 74 | * @param[in] msg Error message |
| 75 | */ |
| 76 | FileNotFound(const std::string &msg); |
| 77 | }; |
| 78 | |
| 79 | /** Error class for failures during test execution. */ |
| 80 | class TestError : public std::runtime_error |
no outgoing calls
no test coverage detected