]> git.tdb.fi Git - libs/datafile.git/commitdiff
Add error.h
authorMikko Rasa <tdb@tdb.fi>
Tue, 12 Jun 2007 18:42:05 +0000 (18:42 +0000)
committerMikko Rasa <tdb@tdb.fi>
Tue, 12 Jun 2007 18:42:05 +0000 (18:42 +0000)
Update svn:ignore

source/error.h [new file with mode: 0644]

diff --git a/source/error.h b/source/error.h
new file mode 100644 (file)
index 0000000..f8f7abd
--- /dev/null
@@ -0,0 +1,30 @@
+#ifndef MSP_PARSER_ERROR_H_
+#define MSP_PARSER_ERROR_H_
+
+#include <msp/core/error.h>
+
+namespace Msp {
+namespace Parser {
+
+class TypeError: public Exception
+{
+public:
+       TypeError(const std::string &w_): Exception(w_) { }
+};
+
+class ParseError: public Exception
+{
+public:
+       ParseError(const std::string &w_, const std::string &s, unsigned l): Exception(w_), source(s), line(l) { }
+       const std::string &get_source() const { return source; }
+       unsigned          get_line() const    { return line; }
+       ~ParseError() throw() { }
+private:
+       std::string source;
+       unsigned    line;
+};
+
+} // namespace Parser
+} // namespace Msp
+
+#endif