1 #ifndef MSP_DATAFILE_EXCEPT_H_
2 #define MSP_DATAFILE_EXCEPT_H_
4 #include <msp/core/except.h>
9 class TypeError: public Exception
12 TypeError(const std::string &w): Exception(w) { }
15 class ParseError: public Exception
18 ParseError(const std::string &w): Exception(w) { }
21 } // namespace DataFile