* @brief Constructor * * @param message A message to accompany the exception * @param file_path (optional) The input file being processed */
| 245 | * @param file_path (optional) The input file being processed |
| 246 | */ |
| 247 | InvalidOptions(std::string message, std::string file_path="") |
| 248 | : FileExceptionBase(message, file_path) { } |
| 249 | virtual ~InvalidOptions() noexcept {} |
| 250 | }; |
| 251 |
nothing calls this directly
no outgoing calls
no test coverage detected