* @brief Constructor * * @param message A message to accompany the exception * @param file_path (optional) The input file being processed */
| 376 | * @param file_path (optional) The input file being processed |
| 377 | */ |
| 378 | ReaderClosed(std::string message, std::string file_path="") |
| 379 | : FileExceptionBase(message, file_path) { } |
| 380 | virtual ~ReaderClosed() noexcept {} |
| 381 | }; |
| 382 |
nothing calls this directly
no outgoing calls
no test coverage detected