#include <msp/fs/path.h>
#include <msp/fs/utils.h>
#include <msp/io/print.h>
+#include <msp/strings/utils.h>
#include "application.h"
#include "getopt.h"
{
IO::print(IO::cerr, "An uncaught exception occurred.\n");
IO::print(IO::cerr, " type: %s\n", Debug::demangle(typeid(e).name()));
- IO::print(IO::cerr, " what(): %s\n", e.what());
+ vector<string> lines = split(e.what(), '\n');
+ if(lines.size()<2)
+ IO::print(IO::cerr, " what(): %s\n", e.what());
+ else
+ {
+ IO::print(IO::cerr, " what(): %s\n", lines.front());
+ for(vector<string>::const_iterator i=lines.begin(); ++i!=lines.end(); )
+ IO::print(IO::cerr, " %s\n", *i);
+ }
}
delete app_;