* @brief Constructor * * @param message A message to accompany the exception * @param file_path (optional) The input file being processed */
| 361 | * @param file_path (optional) The input file being processed |
| 362 | */ |
| 363 | OutOfMemory(std::string message, std::string file_path="") |
| 364 | : FileExceptionBase(message, file_path) { } |
| 365 | virtual ~OutOfMemory() noexcept {} |
| 366 | }; |
| 367 |
nothing calls this directly
no outgoing calls
no test coverage detected