* @brief Constructor * * @param message A message to accompany the exception * @param file_path (optional) The input file being processed */
| 215 | * @param file_path (optional) The input file being processed |
| 216 | */ |
| 217 | InvalidFormat(std::string message, std::string file_path="") |
| 218 | : FileExceptionBase(message, file_path) { } |
| 219 | virtual ~InvalidFormat() noexcept {} |
| 220 | }; |
| 221 |
nothing calls this directly
no outgoing calls
no test coverage detected