aboutsummaryrefslogtreecommitdiff
path: root/include/cru/common/io/FileNotExistException.h
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2023-10-05 22:02:25 +0800
committercrupest <crupest@outlook.com>2023-10-05 22:02:25 +0800
commit1550828518ff4719db88f35e088207816866a073 (patch)
tree217e35f48f6c08152bc607d804ad78c0a292e3cd /include/cru/common/io/FileNotExistException.h
parent90feae14e708fbb0b313503a6e76cfbd77f94ce1 (diff)
downloadcru-1550828518ff4719db88f35e088207816866a073.tar.gz
cru-1550828518ff4719db88f35e088207816866a073.tar.bz2
cru-1550828518ff4719db88f35e088207816866a073.zip
...
Diffstat (limited to 'include/cru/common/io/FileNotExistException.h')
-rw-r--r--include/cru/common/io/FileNotExistException.h19
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_;
- };
-}