eoMaxTimeException is not used only for wallclock time, set a more general message

This commit is contained in:
Johann Dreo 2010-12-17 10:39:42 +01:00
commit 0784db8659

View file

@ -46,7 +46,7 @@ public:
virtual const char* what() const throw()
{
std::ostringstream ss;
ss << "STOP in eoMaxTimeException: the maximum number of wallclock seconds has been reached (" << _elapsed << ").";
ss << "STOP in eoMaxTimeException: the maximum number of allowed seconds has been reached (" << _elapsed << ").";
return ss.str().c_str();
}