diff options
Diffstat (limited to 'include/cru/common/io/FileNotExistException.h')
-rw-r--r-- | include/cru/common/io/FileNotExistException.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/include/cru/common/io/FileNotExistException.h b/include/cru/common/io/FileNotExistException.h deleted file mode 100644 index f49271b1..00000000 --- a/include/cru/common/io/FileNotExistException.h +++ /dev/null @@ -1,19 +0,0 @@ -#pragma once - -#include "../Base.h" -#include "../Exception.h" - -namespace cru::io { - class CRU_BASE_API FileNotExistException : public Exception { - public: - FileNotExistException(String path); - - CRU_DEFAULT_COPY(FileNotExistException) - CRU_DEFAULT_MOVE(FileNotExistException) - - ~FileNotExistException() override = default; - - private: - String path_; - }; -} |