diff options
author | Mike Buland <eichlan@xagasoft.com> | 2009-01-13 00:23:57 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2009-01-13 00:23:57 +0000 |
commit | e771f7c48d38d1c1481b9904d17ed7989d6cd579 (patch) | |
tree | 6844b7664f34952b92c7bfd44682e0d6055864c4 /src/exceptionbase.h | |
parent | 8f29e7be04b6f2890b47c03d7c76a1726d3f2f73 (diff) | |
download | libbu++-e771f7c48d38d1c1481b9904d17ed7989d6cd579.tar.gz libbu++-e771f7c48d38d1c1481b9904d17ed7989d6cd579.tar.bz2 libbu++-e771f7c48d38d1c1481b9904d17ed7989d6cd579.tar.xz libbu++-e771f7c48d38d1c1481b9904d17ed7989d6cd579.zip |
Ok...now UnsupportedException has text in it's what.
Diffstat (limited to '')
-rw-r--r-- | src/exceptionbase.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/exceptionbase.h b/src/exceptionbase.h index 6402481..de63177 100644 --- a/src/exceptionbase.h +++ b/src/exceptionbase.h | |||
@@ -181,7 +181,11 @@ name::name( const name &e ) throw() : \ | |||
181 | namespace Bu | 181 | namespace Bu |
182 | { | 182 | { |
183 | // Exceptions that are so general they could be used anywhere go here. | 183 | // Exceptions that are so general they could be used anywhere go here. |
184 | subExceptionDecl( UnsupportedException ) | 184 | class UnsupportedException : public Bu::ExceptionBase |
185 | { | ||
186 | public: | ||
187 | UnsupportedException() throw (); | ||
188 | }; | ||
185 | } | 189 | } |
186 | 190 | ||
187 | #endif | 191 | #endif |