aboutsummaryrefslogtreecommitdiff
path: root/src/exceptionbase.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/exceptionbase.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/exceptionbase.h b/src/exceptionbase.h
index 7c3cbd9..6f1eca7 100644
--- a/src/exceptionbase.h
+++ b/src/exceptionbase.h
@@ -60,6 +60,12 @@ public:
60 */ 60 */
61 void setWhat( const char *lpFormat, va_list &vargs ); 61 void setWhat( const char *lpFormat, va_list &vargs );
62 62
63 /**
64 *
65 * @param lpText
66 */
67 void setWhat( const char *lpText );
68
63private: 69private:
64 int nErrorCode; /**< The code for the error that occured. */ 70 int nErrorCode; /**< The code for the error that occured. */
65 char *sWhat; /**< The text string telling people what went wrong. */ 71 char *sWhat; /**< The text string telling people what went wrong. */