#include <tbb_exception.h>
Inheritance diagram for tbb::captured_exception:
Public Member Functions | |
captured_exception (const captured_exception &src) | |
captured_exception (const char *name_, const char *info) | |
captured_exception & | operator= (const captured_exception &src) |
captured_exception *__TBB_EXPORTED_METHOD | move () throw () |
Creates and returns pointer to the deep copy of this exception object. | |
void __TBB_EXPORTED_METHOD | destroy () throw () |
Destroys objects created by the move() method. | |
void | throw_self () |
Throws this exception object. | |
const char *__TBB_EXPORTED_METHOD | name () const throw () |
Returns RTTI name of the originally intercepted exception. | |
const char *__TBB_EXPORTED_METHOD | what () const throw () |
Returns the result of originally intercepted exception's what() method. | |
void __TBB_EXPORTED_METHOD | set (const char *name, const char *info) throw () |
void __TBB_EXPORTED_METHOD | clear () throw () |
Exception of this type is thrown by TBB in the root thread (thread that started a parallel algorithm ) if an unhandled exception was intercepted during the algorithm execution in one of the workers.
void __TBB_EXPORTED_METHOD tbb::captured_exception::destroy | ( | ) | throw () [virtual] |
Destroys objects created by the move() method.
Frees memory and calls destructor for this exception object. Can and must be used only on objects created by the move method.
Implements tbb::tbb_exception.
captured_exception* __TBB_EXPORTED_METHOD tbb::captured_exception::move | ( | ) | throw () [virtual] |
Creates and returns pointer to the deep copy of this exception object.
Move semantics is allowed.
Implements tbb::tbb_exception.
void tbb::captured_exception::throw_self | ( | ) | [inline, virtual] |
Throws this exception object.
Make sure that if you have several levels of derivation from this interface you implement or override this method on the most derived level. The implementation is as simple as "throw *this;". Failure to do this will result in exception of a base class type being thrown.
Implements tbb::tbb_exception.