* @brief Constructor * * @param message A message to accompany the exception * @param file_path (optional) The input file being processed */
| 185 | * @param file_path (optional) The input file being processed |
| 186 | */ |
| 187 | InvalidCodec(std::string message, std::string file_path="") |
| 188 | : FileExceptionBase(message, file_path) { } |
| 189 | virtual ~InvalidCodec() noexcept {} |
| 190 | }; |
| 191 |
nothing calls this directly
no outgoing calls
no test coverage detected