diff options
Diffstat (limited to '')
-rw-r--r-- | src/exceptionbase.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/exceptionbase.cpp b/src/exceptionbase.cpp index a9b9820..f3d22da 100644 --- a/src/exceptionbase.cpp +++ b/src/exceptionbase.cpp | |||
@@ -48,6 +48,16 @@ void ExceptionBase::setWhat( const char *lpFormat, va_list &vargs ) | |||
48 | vsnprintf( sWhat, nSize+1, lpFormat, vargs ); | 48 | vsnprintf( sWhat, nSize+1, lpFormat, vargs ); |
49 | } | 49 | } |
50 | 50 | ||
51 | void ExceptionBase::setWhat( const char *lpText ) | ||
52 | { | ||
53 | if( sWhat ) delete[] sWhat; | ||
54 | int nSize; | ||
55 | |||
56 | nSize = strlen( lpText ); | ||
57 | sWhat = new char[nSize+1]; | ||
58 | strcpy( sWhat, lpText ); | ||
59 | } | ||
60 | |||
51 | const char *ExceptionBase::what() const throw() | 61 | const char *ExceptionBase::what() const throw() |
52 | { | 62 | { |
53 | return sWhat; | 63 | return sWhat; |