12 namespace Mobi {
namespace Mtld {
17 std::stringstream stream;
18 mutable std::string str;
20 std::ostream &out() {
return stream; }
21 const char *what()
const throw() { str = stream.str();
return str.c_str(); }
23 Exception(std::string info) { stream << info; }
Definition: exception.h:16