]> git.tdb.fi Git - libs/datafile.git/blobdiff - source/except.h
Remove the outdated except.h
[libs/datafile.git] / source / except.h
diff --git a/source/except.h b/source/except.h
deleted file mode 100644 (file)
index ff256a4..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef MSP_DATAFILE_EXCEPT_H_
-#define MSP_DATAFILE_EXCEPT_H_
-
-#include <msp/core/except.h>
-
-namespace Msp {
-namespace DataFile {
-
-class TypeError: public Exception
-{
-public:
-       TypeError(const std::string &w): Exception(w) { }
-};
-
-class ParseError: public Exception
-{
-public:
-       ParseError(const std::string &w): Exception(w) { }
-};
-
-} // namespace DataFile
-} // namespace Msp
-
-#endif