From e771f7c48d38d1c1481b9904d17ed7989d6cd579 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 13 Jan 2009 00:23:57 +0000 Subject: Ok...now UnsupportedException has text in it's what. --- src/exceptionbase.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/exceptionbase.cpp') 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() return nErrorCode; } - -namespace Bu +Bu::UnsupportedException::UnsupportedException() throw() : + ExceptionBase( 0 ) { - subExceptionDef( UnsupportedException ) + setWhat("An unsupperted operation was attempted."); } + -- cgit v1.2.3