diff --git a/core/roslib/include/ros/time.h b/core/roslib/include/ros/time.h index 9bcab976..e7f4604b 100644 --- a/core/roslib/include/ros/time.h +++ b/core/roslib/include/ros/time.h @@ -55,7 +55,8 @@ class TimeNotInitializedException : public Exception { public: TimeNotInitializedException() - : Exception("Cannot use ros::Time::now() before the first NodeHandle has been created or ros::start() has been called") + : Exception("Cannot use ros::Time::now() before the first NodeHandle has been created or ros::start() has been called. " + "If this is a standalone app or test that just uses ros::Time and does not communicate over ROS, you may also call ros::Time::init()") {} };