aboutsummaryrefslogtreecommitdiff
path: root/exc.h
diff options
context:
space:
mode:
Diffstat (limited to 'exc.h')
-rw-r--r--exc.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/exc.h b/exc.h
index dc380d3..491ec23 100644
--- a/exc.h
+++ b/exc.h
@@ -19,13 +19,21 @@ class GeneralError {
string get_msg(); /**< Get the error message */
};
+/** @class TokenError
+ * Error with some hints
+ */
class TokenError : public GeneralError {
public:
- TokenError(string token, ErrCode code); /**< Construct an TokenError */
+ /** Construct an TokenError */
+ TokenError(string token, ErrCode code);
};
+/** @class NormalError
+ * Error with constant plain text
+ */
class NormalError : public GeneralError {
public:
+ /** Construct a NormalError */
NormalError(ErrCode code);
};