PCL
|
Errors that cause immediate program termination. More...
#include <Exception.h>
Public Member Functions | |
FatalError ()=default | |
FatalError (const pcl::Exception &x) | |
FatalError (const pcl::FatalError &)=default | |
FatalError (const String &message, bool unformatted=false) | |
String | Caption () const override |
![]() | |
Error ()=default | |
Error (const Error &)=default | |
Error (const String &message, bool unformatted=false) | |
String | Message () const override |
bool | ShowUnformatted () const override |
![]() | |
Exception ()=default | |
Exception (const pcl::Exception &)=default | |
virtual | ~Exception () |
virtual String | ExceptionClass () const |
virtual String | FormatInfo () const |
virtual void | Show () const |
PCL_FORCE_INLINE void | ShowOnConsole () const |
Additional Inherited Members | |
![]() | |
static void | DisableConsoleOutput (bool disable=true) |
static void | DisableGUIOutput (bool disable=true) |
static void | EnableConsoleOutput (bool=true) |
static void | EnableGUIOutput (bool=true) |
static bool | IsConsoleOutputEnabled () |
static bool | IsGUIOutputEnabled () |
FatalError indicates an error situation that cannot be resumed and requires immediate program termination.
Definition at line 329 of file Exception.h.
|
default |
Constructs a FatalError object with an empty message.
|
inline |
Constructs a FatalError object.
message | The error message that will be shown for this exception. |
unformatted | If true, the specified message will be shown verbatim on the console (when console output is enabled) without inserting any prefixes and captions. This parameter is false by default. |
Definition at line 348 of file Exception.h.
|
inline |
"Promote" any exception to have "fatal consequences".
Definition at line 356 of file Exception.h.
|
default |
Copy constructor.
|
inlineoverridevirtual |
Returns a caption text suitable to represent the information in this Exception object.
Reimplemented from pcl::Error.
Definition at line 368 of file Exception.h.