X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ad455a31635e6f71bb8dd5c06d85657812c783bd..9853c047276b618315bd3f064c1f13c3d3ccd771:/include/simgrid/Exception.hpp diff --git a/include/simgrid/Exception.hpp b/include/simgrid/Exception.hpp index 200eb19cdc..e0dc7b4d06 100644 --- a/include/simgrid/Exception.hpp +++ b/include/simgrid/Exception.hpp @@ -93,14 +93,16 @@ private: }; /** Exception raised when a timeout elapsed */ -class TimeoutError : public Exception { +class TimeoutException : public Exception { public: - TimeoutError(simgrid::xbt::ThrowPoint&& throwpoint, std::string&& message) + TimeoutException(simgrid::xbt::ThrowPoint&& throwpoint, std::string&& message) : Exception(std::move(throwpoint), std::move(message)) { } }; +XBT_ATTRIB_DEPRECATED_v327("Please use simgrid::TimeoutException") typedef TimeoutException TimeoutError; + /** Exception raised when a host fails */ class HostFailureException : public Exception { public: