-rw-r--r-- | lib/exception.cc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/exception.cc b/lib/exception.cc index 510982e..0b775f7 100644 --- a/lib/exception.cc +++ b/lib/exception.cc @@ -3,2 +3,3 @@ #include <opkele/exception.h> +#include <opkele/debug.h> @@ -8,2 +9,8 @@ namespace opkele { + exception::exception(const string& w) + : _what(w) + { + DOUT_("throwing exception(\""<<w<<"\")"); + } + exception::~exception() throw() { @@ -13,3 +20,12 @@ namespace opkele { } + +# else + exception::exception(const string& fi,const string& fu,int l,const string& w) + : konforka::exception(fi,fu,l,w) + { + DOUT_("throwing exception(\""<<w<<"\")"); + DOUT_(" from "<<fi<<':'<<fu<<':'<<l); + } + # endif |