summaryrefslogtreecommitdiffabout
path: root/lib
authorMichael Krelin <hacker@klever.net>2008-01-01 14:09:08 (UTC)
committer Michael Krelin <hacker@klever.net>2008-01-04 18:24:38 (UTC)
commitb52ad4dc051835fdf8417f748bf40ba4c17449d4 (patch) (unidiff)
tree01c9fd136f2dcf8f16c7f016b1fdf8e5582b0182 /lib
parent15d089da9f7682bc3524b6a278cfcd64621e7db2 (diff)
downloadlibopkele-b52ad4dc051835fdf8417f748bf40ba4c17449d4.zip
libopkele-b52ad4dc051835fdf8417f748bf40ba4c17449d4.tar.gz
libopkele-b52ad4dc051835fdf8417f748bf40ba4c17449d4.tar.bz2
output thrown exceptions to clog stream
Signed-off-by: Michael Krelin <hacker@klever.net>
Diffstat (limited to 'lib') (more/less context) (ignore whitespace changes)
-rw-r--r--lib/exception.cc16
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 @@
3#include <opkele/exception.h> 3#include <opkele/exception.h>
4#include <opkele/debug.h>
4 5
@@ -8,2 +9,8 @@ namespace opkele {
8 9
10 exception::exception(const string& w)
11 : _what(w)
12 {
13 DOUT_("throwing exception(\""<<w<<"\")");
14 }
15
9 exception::~exception() throw() { 16 exception::~exception() throw() {
@@ -13,3 +20,12 @@ namespace opkele {
13 } 20 }
21
22# else
14 23
24 exception::exception(const string& fi,const string& fu,int l,const string& w)
25 : konforka::exception(fi,fu,l,w)
26 {
27 DOUT_("throwing exception(\""<<w<<"\")");
28 DOUT_(" from "<<fi<<':'<<fu<<':'<<l);
29 }
30
15# endif 31# endif