casacore
|
Initialization error, typically of static data shared between objects. More...
#include <Error.h>
Additional Inherited Members | |
Public Types inherited from casacore::AipsError | |
enum | Category { BOUNDARY , INITIALIZATION , INVALID_ARGUMENT , CONFORMANCE , ENVIRONMENT , SYSTEM , PERMISSION , GENERAL } |
Public Member Functions inherited from casacore::AipsError | |
virtual const char * | what () const noexcept |
Simply returns the stored error message. More... | |
const String & | getMesg () const |
String | getStackTrace () const |
AipsError::Category | getCategory () const |
void | setMessage (const String &msg) const |
Append a message. More... | |
AipsError (const Char *str, Category c=GENERAL) | |
Creates an AipsError and initializes the error message from the parameter. More... | |
AipsError (const String &str, Category c=GENERAL) | |
AipsError (const String &msg, const String &filename, uInt lineNumber, Category c=GENERAL) | |
AipsError (Category c=GENERAL) | |
~AipsError () noexcept | |
Destructor which does nothing. More... | |
Static Public Member Functions inherited from casacore::AipsError | |
static void | getLastInfo (String &message, String &stackTrace) |
Get or clear the stacktrace info. More... | |
static String | getLastMessage () |
static String | getLastStackTrace () |
static void | clearLastInfo () |
static AipsError | repackageAipsError (AipsError &error, const String &message, const char *file, Int line, const char *func) |
Repackage an exception. More... | |
static void | throwIf (Bool condition, const String &message, const char *file, Int line, const char *func="") |
Throw if the condition is true. More... | |
static void | throwIfError (Int errorCode, const String &prefix, const char *file, Int line, const char *func="") |
Throw if the system error code is not 0. More... | |
Protected Member Functions inherited from casacore::AipsError | |
void | addStackTrace () |
Add the stack trace to the message (if USE_STACKTRACE is set). More... | |
Protected Attributes inherited from casacore::AipsError | |
String | message |
Category | category |
String | stackTrace |
Initialization error, typically of static data shared between objects.
Public interface
This error indicates that some initialization has failed. It is preferable to throw this in an initX() function called by std::call_once() or similar over returning a bool or other result variable.