aboutsummaryrefslogtreecommitdiff
path: root/cutl/fs/path.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cutl/fs/path.cxx')
-rw-r--r--cutl/fs/path.cxx18
1 files changed, 18 insertions, 0 deletions
diff --git a/cutl/fs/path.cxx b/cutl/fs/path.cxx
new file mode 100644
index 0000000..6e295c6
--- /dev/null
+++ b/cutl/fs/path.cxx
@@ -0,0 +1,18 @@
+// file : cutl/fs/path.cxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2009 Code Synthesis Tools CC
+// license : MIT; see accompanying LICENSE file
+
+#include <cutl/fs/path.hxx>
+
+namespace cutl
+{
+ namespace fs
+ {
+ char const* invalid_path::
+ what () const throw ()
+ {
+ return "invalid filesystem path";
+ }
+ }
+}