* @brief Constructor * * @param message A message to accompany the exception * @param file_path The input file being processed */
| 200 | * @param file_path The input file being processed |
| 201 | */ |
| 202 | InvalidFile(std::string message, std::string file_path) |
| 203 | : FileExceptionBase(message, file_path) { } |
| 204 | virtual ~InvalidFile() noexcept {} |
| 205 | }; |
| 206 |
nothing calls this directly
no outgoing calls
no test coverage detected