]> git.tdb.fi Git - libs/core.git/blobdiff - source/except.h
Move files to prepare for assimilation into core
[libs/core.git] / source / except.h
diff --git a/source/except.h b/source/except.h
deleted file mode 100644 (file)
index 5770f64..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef MSP_IO_EXCEPT_H_
-#define MSP_IO_EXCEPT_H_
-
-#include <msp/core/except.h>
-
-namespace Msp {
-namespace IO {
-
-class FileNotFound: public Exception
-{
-public:
-       FileNotFound(const std::string &w_, const std::string &f): Exception(w_), filename(f) { }
-       const std::string &get_filename() { return filename; }
-       ~FileNotFound() throw() { }
-private:
-       std::string filename;
-};
-
-} // namespace IO
-} // namespace Msp
-
-#endif