From: Mikko Rasa Date: Fri, 28 Sep 2012 09:04:38 +0000 (+0300) Subject: Remove the outdated except.h X-Git-Url: http://git.tdb.fi/?p=libs%2Fdatafile.git;a=commitdiff_plain;h=e639a0c06a1909fdd7bf12b07ce6ef59e1a9ac2c Remove the outdated except.h --- diff --git a/source/except.h b/source/except.h deleted file mode 100644 index ff256a4..0000000 --- a/source/except.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef MSP_DATAFILE_EXCEPT_H_ -#define MSP_DATAFILE_EXCEPT_H_ - -#include - -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