aboutsummaryrefslogtreecommitdiff
path: root/libcutl/fs/exception.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'libcutl/fs/exception.cxx')
-rw-r--r--libcutl/fs/exception.cxx16
1 files changed, 16 insertions, 0 deletions
diff --git a/libcutl/fs/exception.cxx b/libcutl/fs/exception.cxx
new file mode 100644
index 0000000..49fb9fe
--- /dev/null
+++ b/libcutl/fs/exception.cxx
@@ -0,0 +1,16 @@
+// file : libcutl/fs/exception.cxx
+// license : MIT; see accompanying LICENSE file
+
+#include <libcutl/fs/exception.hxx>
+
+namespace cutl
+{
+ namespace fs
+ {
+ char const* error::
+ what () const noexcept
+ {
+ return "filesystem error";
+ }
+ }
+}