* @brief Constructor * * @param message A message to accompany the exception * @param file_path (optional) The input file being processed */
| 298 | * @param file_path (optional) The input file being processed |
| 299 | */ |
| 300 | NoStreamsFound(std::string message, std::string file_path="") |
| 301 | : FileExceptionBase(message, file_path) { } |
| 302 | virtual ~NoStreamsFound() noexcept {} |
| 303 | }; |
| 304 |
nothing calls this directly
no outgoing calls
no test coverage detected