Skip to content
Snippets Groups Projects
Commit 6f7e141b authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

improve errmsg ("failed" vs BUG)

parent 9553b90a
No related branches found
No related tags found
No related merge requests found
......@@ -158,13 +158,13 @@ void CFrida::interactive()
cmdline = NMacro::readln( NOlm::sel_str() + " > " );
execute_cmd( cmdline );
} catch( string& ex ) {
cerr << "'" << cmdline << "' failed(S): " << ex << endl;
cerr << "'" << cmdline << "' failed: " << ex << endl;
NMacro::clear();
} catch( const char* ex ) {
cerr << "'" << cmdline << "' failed(C): " << ex << endl;
cerr << "BUG: '" << cmdline << "' failed with unforeseen message " << ex << endl;
NMacro::clear();
} catch( ... ) {
cerr << "BUG: catched unexpected exception\n";
cerr << "BUG: '" << cmdline << "' failed with unforeseen exception\n";
NMacro::clear();
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment