X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FException.cci;h=3366fe23467d20109a35c3d00a3e941169c142ea;hb=b8ca4a544cce3e6023bb56b712a03d6362f2bb79;hp=189c2f1e24f21f47ff8433f24eaad4494fd6d546;hpb=d2459b6c8249291588fd3d0d125ed3d38e003b55;p=senf.git diff --git a/Utils/Exception.cci b/Utils/Exception.cci index 189c2f1..3366fe2 100644 --- a/Utils/Exception.cci +++ b/Utils/Exception.cci @@ -31,7 +31,8 @@ // senf::ExceptionMixin prefix_ senf::ExceptionMixin::ExceptionMixin(std::string const & description) - : message_(description) + : what_(description), + message_(description) { #ifdef SENF_DEBUG addBacktrace(); @@ -47,6 +48,7 @@ prefix_ std::string const & senf::ExceptionMixin::message() prefix_ void senf::ExceptionMixin::append(std::string text) { message_ += text; + what_ += text; } ///////////////////////////////////////////////////////////////////////////