From 0784db8659602a423f687d2d3fd96cf860565129 Mon Sep 17 00:00:00 2001 From: Johann Dreo Date: Fri, 17 Dec 2010 10:39:42 +0100 Subject: [PATCH] eoMaxTimeException is not used only for wallclock time, set a more general message --- eo/src/eoExceptions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eo/src/eoExceptions.h b/eo/src/eoExceptions.h index bcccee2af..9760efc61 100644 --- a/eo/src/eoExceptions.h +++ b/eo/src/eoExceptions.h @@ -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(); }