Exception when memory could not be allocated
| 352 | |
| 353 | /// Exception when memory could not be allocated |
| 354 | class OutOfMemory : public FileExceptionBase |
| 355 | { |
| 356 | public: |
| 357 | /** |
| 358 | * @brief Constructor |
| 359 | * |
| 360 | * @param message A message to accompany the exception |
| 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 | |
| 368 | /// Exception when a reader is closed, and a frame is requested |
| 369 | class ReaderClosed : public FileExceptionBase |
no outgoing calls
no test coverage detected