aboutsummaryrefslogtreecommitdiff
path: root/src/exceptionbase.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/exceptionbase.cpp7
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 87Bu::UnsupportedException::UnsupportedException() throw() :
88namespace Bu 88 ExceptionBase( 0 )
89{ 89{
90 subExceptionDef( UnsupportedException ) 90 setWhat("An unsupperted operation was attempted.");
91} 91}
92