X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3bbf1e59490479059f4c539277507c754a6681c1..c58278cb019a1db459dd698bc4ec8e313aa53b59:/include/simgrid/exception.hpp diff --git a/include/simgrid/exception.hpp b/include/simgrid/exception.hpp index 32edceaa42..f363a2ee47 100644 --- a/include/simgrid/exception.hpp +++ b/include/simgrid/exception.hpp @@ -58,7 +58,7 @@ class canceled_error : public simgrid::exception { * * @ingroup XBT_ex_c */ -class XBT_PUBLIC xbt_ex : public simgrid::exception, public simgrid::xbt::WithContextException { +class XBT_PUBLIC xbt_ex : public simgrid::exception, public simgrid::xbt::ContextedException { public: xbt_ex() : simgrid::exception() {} @@ -68,7 +68,7 @@ public: * @param message Exception message */ xbt_ex(simgrid::xbt::ThrowPoint throwpoint, const char* message) - : simgrid::exception(message), simgrid::xbt::WithContextException(throwpoint, simgrid::xbt::backtrace()) + : simgrid::exception(message), simgrid::xbt::ContextedException(throwpoint, simgrid::xbt::backtrace()) { }