Utils: String join utility
[senf.git] / Utils / Exception.cci
index e7a9c53..b745f80 100644 (file)
 
 ///////////////////////////////////////////////////////////////////////////
 // senf::Exception
+
 prefix_ senf::Exception::Exception(std::string const & description)
     : message_(description)
 {}
 
+prefix_ std::string const & senf::Exception::message()
+    const
+{
+    return message_;
+}
+
+prefix_ void senf::Exception::append(std::string text)
+{
+    message_ += text;
+}
+
 ///////////////////////////////////////////////////////////////////////////
+// senf::SystemException
 
 prefix_ senf::SystemException::SystemException(std::string const & descr _SENF_EXC_DEBUG_ARGS_ND)
 {