aboutsummaryrefslogtreecommitdiff
path: root/cutl/fs/exception.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'cutl/fs/exception.hxx')
-rw-r--r--cutl/fs/exception.hxx36
1 files changed, 0 insertions, 36 deletions
diff --git a/cutl/fs/exception.hxx b/cutl/fs/exception.hxx
deleted file mode 100644
index ebb04bf..0000000
--- a/cutl/fs/exception.hxx
+++ /dev/null
@@ -1,36 +0,0 @@
-// file : cutl/fs/exception.hxx
-// license : MIT; see accompanying LICENSE file
-
-#ifndef CUTL_FS_EXCEPTION_HXX
-#define CUTL_FS_EXCEPTION_HXX
-
-#include <cutl/exception.hxx>
-
-#include <cutl/details/config.hxx>
-
-namespace cutl
-{
- namespace fs
- {
- struct LIBCUTL_EXPORT error: exception
- {
- error (int code): code_ (code) {}
-
- // Error code (errno).
- //
- int
- code () const
- {
- return code_;
- }
-
- virtual char const*
- what () const LIBCUTL_NOTHROW_NOEXCEPT;
-
- private:
- int code_;
- };
- }
-}
-
-#endif // CUTL_FS_EXCEPTION_HXX