summaryrefslogtreecommitdiffabout
path: root/include/kingate/exception.h
Side-by-side diff
Diffstat (limited to 'include/kingate/exception.h') (more/less context) (ignore whitespace changes)
-rw-r--r--include/kingate/exception.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/kingate/exception.h b/include/kingate/exception.h
index 6ebb361..85d89ea 100644
--- a/include/kingate/exception.h
+++ b/include/kingate/exception.h
@@ -15,30 +15,39 @@
namespace kingate {
using namespace std;
/**
* The base for kingate-specific exception.
*/
class exception : public konforka::exception {
public:
explicit exception(const string& w)
: konforka::exception(NOCODEPOINT,w) { }
exception(const string& fi,const string& fu,int l,const string &w)
: konforka::exception(fi,fu,l,w) { }
};
/**
* Thrown if the specified variable or parameter wasn't found.
*/
class exception_notfound : public exception {
public:
explicit exception_notfound(const string& w)
: exception(w) { }
exception_notfound(const string& fi,const string& fu,int l,const string& w)
: exception(fi,fu,l,w) { }
};
+
+ /**
+ * Thrown in case of unexpected server behaviour.
+ */
+ class server_error : public exception {
+ public:
+ server_error(const string& fi,const string& fu,int l,const string& w)
+ : exception(fi,fu,l,w) { }
+ };
}
#endif /* __KINGATE_EXCEPTION_H */
/*
* vim:set ft=cpp:
*/