author | Michael Krelin <hacker@klever.net> | 2008-01-01 14:09:08 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2008-01-04 18:24:38 (UTC) |
commit | b52ad4dc051835fdf8417f748bf40ba4c17449d4 (patch) (unidiff) | |
tree | 01c9fd136f2dcf8f16c7f016b1fdf8e5582b0182 /include/opkele/exception.h | |
parent | 15d089da9f7682bc3524b6a278cfcd64621e7db2 (diff) | |
download | libopkele-b52ad4dc051835fdf8417f748bf40ba4c17449d4.zip libopkele-b52ad4dc051835fdf8417f748bf40ba4c17449d4.tar.gz libopkele-b52ad4dc051835fdf8417f748bf40ba4c17449d4.tar.bz2 |
output thrown exceptions to clog stream
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | include/opkele/exception.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/opkele/exception.h b/include/opkele/exception.h index 36bd07a..64f189e 100644 --- a/include/opkele/exception.h +++ b/include/opkele/exception.h | |||
@@ -56,55 +56,52 @@ | |||
56 | */ | 56 | */ |
57 | # define OPKELE_RETHROW | 57 | # define OPKELE_RETHROW |
58 | #endif /* OPKELE_HAVE_KONFORKA */ | 58 | #endif /* OPKELE_HAVE_KONFORKA */ |
59 | /** | 59 | /** |
60 | * the exception parameters list to pass to constructor | 60 | * the exception parameters list to pass to constructor |
61 | */ | 61 | */ |
62 | # define OPKELE_E_CONS OPKELE_E_CONS_ w | 62 | # define OPKELE_E_CONS OPKELE_E_CONS_ w |
63 | 63 | ||
64 | namespace opkele { | 64 | namespace opkele { |
65 | using std::string; | 65 | using std::string; |
66 | 66 | ||
67 | /** | 67 | /** |
68 | * the base opkele exception class | 68 | * the base opkele exception class |
69 | */ | 69 | */ |
70 | class exception : public | 70 | class exception : public |
71 | # ifdef OPKELE_HAVE_KONFORKA | 71 | # ifdef OPKELE_HAVE_KONFORKA |
72 | konforka::exception | 72 | konforka::exception |
73 | # else | 73 | # else |
74 | std::exception | 74 | std::exception |
75 | # endif | 75 | # endif |
76 | { | 76 | { |
77 | public: | 77 | public: |
78 | # ifdef OPKELE_HAVE_KONFORKA | 78 | # ifdef OPKELE_HAVE_KONFORKA |
79 | explicit | 79 | explicit |
80 | exception(const string& fi,const string& fu,int l,const string& w) | 80 | exception(const string& fi,const string& fu,int l,const string& w); |
81 | : konforka::exception(fi,fu,l,w) { } | ||
82 | # else /* OPKELE_HAVE_KONFORKA */ | 81 | # else /* OPKELE_HAVE_KONFORKA */ |
83 | string _what; | 82 | string _what; |
84 | explicit | 83 | explicit exception(const string& w); |
85 | exception(const string& w) | ||
86 | : _what(w) { } | ||
87 | virtual ~exception() throw(); | 84 | virtual ~exception() throw(); |
88 | virtual const char * what() const throw(); | 85 | virtual const char * what() const throw(); |
89 | # endif /* OPKELE_HAVE_KONFORKA */ | 86 | # endif /* OPKELE_HAVE_KONFORKA */ |
90 | }; | 87 | }; |
91 | 88 | ||
92 | /** | 89 | /** |
93 | * thrown in case of failed conversion | 90 | * thrown in case of failed conversion |
94 | */ | 91 | */ |
95 | class failed_conversion : public exception { | 92 | class failed_conversion : public exception { |
96 | public: | 93 | public: |
97 | failed_conversion(OPKELE_E_PARS) | 94 | failed_conversion(OPKELE_E_PARS) |
98 | : exception(OPKELE_E_CONS) { } | 95 | : exception(OPKELE_E_CONS) { } |
99 | }; | 96 | }; |
100 | /** | 97 | /** |
101 | * thrown in case of failed lookup (either parameter or persistent store) | 98 | * thrown in case of failed lookup (either parameter or persistent store) |
102 | */ | 99 | */ |
103 | class failed_lookup : public exception { | 100 | class failed_lookup : public exception { |
104 | public: | 101 | public: |
105 | failed_lookup(OPKELE_E_PARS) | 102 | failed_lookup(OPKELE_E_PARS) |
106 | : exception(OPKELE_E_CONS) { } | 103 | : exception(OPKELE_E_CONS) { } |
107 | }; | 104 | }; |
108 | /** | 105 | /** |
109 | * thrown in case of bad input (either local or network) | 106 | * thrown in case of bad input (either local or network) |
110 | */ | 107 | */ |