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.cpp | |
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 'src/exceptionbase.cpp')
-rw-r--r-- | src/exceptionbase.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/exceptionbase.cpp b/src/exceptionbase.cpp index 207fa47..a3b10af 100644 --- a/src/exceptionbase.cpp +++ b/src/exceptionbase.cpp | |||
@@ -84,8 +84,9 @@ int Bu::ExceptionBase::getErrorCode() | |||
84 | return nErrorCode; | 84 | return nErrorCode; |
85 | } | 85 | } |
86 | 86 | ||
87 | 87 | Bu::UnsupportedException::UnsupportedException() throw() : | |
88 | namespace Bu | 88 | ExceptionBase( 0 ) |
89 | { | 89 | { |
90 | subExceptionDef( UnsupportedException ) | 90 | setWhat("An unsupperted operation was attempted."); |
91 | } | 91 | } |
92 | |||