Base exception type that uses tbb_allocator if GTSAM is compiled with TBB. More...
#include <ThreadsafeException.h>
Public Member Functions | |
const char * | what () const noexcept override |
Protected Types | |
typedef std::allocator< char > | Allocator |
typedef std::string | String |
Protected Member Functions | |
ThreadsafeException () | |
Default constructor is protected - may only be created from derived classes. More... | |
ThreadsafeException (const ThreadsafeException &other) | |
Copy constructor is protected - may only be created from derived classes. More... | |
ThreadsafeException (const std::string &description) | |
Construct with description string. More... | |
~ThreadsafeException () noexcept override | |
Default destructor doesn't have the noexcept. More... | |
Protected Attributes | |
std::optional< String > | description_ |
Optional description. More... | |
bool | dynamic_ |
Whether this object was moved. More... | |
Private Types | |
typedef std::exception | Base |
Base exception type that uses tbb_allocator if GTSAM is compiled with TBB.
Definition at line 40 of file ThreadsafeException.h.
|
protected |
Definition at line 53 of file ThreadsafeException.h.
|
private |
Definition at line 44 of file ThreadsafeException.h.
|
protected |
Definition at line 52 of file ThreadsafeException.h.
|
inlineprotected |
Default constructor is protected - may only be created from derived classes.
Definition at line 61 of file ThreadsafeException.h.
|
inlineprotected |
Copy constructor is protected - may only be created from derived classes.
Definition at line 66 of file ThreadsafeException.h.
|
inlineprotected |
Construct with description string.
Definition at line 71 of file ThreadsafeException.h.
|
inlineoverrideprotectednoexcept |
Default destructor doesn't have the noexcept.
Definition at line 77 of file ThreadsafeException.h.
|
inlineoverridenoexcept |
Definition at line 81 of file ThreadsafeException.h.
|
mutableprotected |
Optional description.
Definition at line 58 of file ThreadsafeException.h.
|
protected |
Whether this object was moved.
Definition at line 57 of file ThreadsafeException.h.