X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/72884f9c682441d0a9de0f2df63b47cde7822058..b58b0ba2f6b92efa234677e19dd998346113504d:/src/simgrid/Exception.cpp diff --git a/src/simgrid/Exception.cpp b/src/simgrid/Exception.cpp index d250e733c0..7152419096 100644 --- a/src/simgrid/Exception.cpp +++ b/src/simgrid/Exception.cpp @@ -1,17 +1,18 @@ -/* Copyright (c) 2018-2021. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2018-2023. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ #include -XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix_context); +XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(ker_actor); namespace simgrid { // DO NOT define destructors for exceptions in Exception.hpp. // Defining it here ensures that the exceptions are defined only in libsimgrid, but not in libsimgrid-java. // Doing otherwise naturally breaks things (at least on freebsd with clang). +// TODO: is it still useful now that Java is gone? Exception::~Exception() = default; TimeoutException::~TimeoutException() = default; @@ -22,6 +23,7 @@ VmFailureException::~VmFailureException() = default; CancelException::~CancelException() = default; TracingError::~TracingError() = default; ParseError::~ParseError() = default; +AssertionError::~AssertionError() = default; ForcefulKillException::~ForcefulKillException() = default; void ForcefulKillException::do_throw() @@ -29,7 +31,7 @@ void ForcefulKillException::do_throw() throw ForcefulKillException(); } -bool ForcefulKillException::try_n_catch(const std::function& try_block) +bool ForcefulKillException::try_n_catch(const std::function& try_block) // XBT_ATTRIB_DEPRECATED_v338 { bool res; try {