]> git.tdb.fi Git - libs/datafile.git/commitdiff
Remove the outdated except.h
authorMikko Rasa <tdb@tdb.fi>
Fri, 28 Sep 2012 09:04:38 +0000 (12:04 +0300)
committerMikko Rasa <tdb@tdb.fi>
Fri, 28 Sep 2012 09:04:38 +0000 (12:04 +0300)
source/except.h [deleted file]

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