|
void | AbstractMethod (const char *method) |
| This function can be used in abstract base classes in case one does not want to make the class a "real" (in C++ sense) ABC. More...
|
|
void | Break (const char *location, const char *va_(fmt),...) |
| Use this function in case an error occurred. More...
|
|
static void | DebugPrint (const char *fmt,...) |
| Print debugging message to stderr and, on Windows, to the system debugger. More...
|
|
void | DefaultErrorHandler (Int_t level, Bool_t abort_bool, const char *location, const char *msg) |
| The default error handler function. More...
|
|
void | Error (const char *location, const char *va_(fmt),...) |
| Use this function in case an error occurred. More...
|
|
void | ErrorHandler (Int_t level, const char *location, const char *fmt, va_list ap) |
| General error handler function. It calls the user set error handler. More...
|
|
void | Fatal (const char *location, const char *va_(fmt),...) |
| Use this function in case of a fatal error. It will abort the program. More...
|
|
ErrorHandlerFunc_t | GetErrorHandler () |
| Returns the current error handler function. More...
|
|
void | Info (const char *location, const char *va_(fmt),...) |
| Use this function for informational messages. More...
|
|
void | MayNotUse (const char *method) |
| This function can be used in classes that should override a certain function, but in the inherited class the function makes no sense. More...
|
|
void | Obsolete (const char *function, const char *asOfVers, const char *removedFromVers) |
| Use this function to declare a function obsolete. More...
|
|
ErrorHandlerFunc_t | SetErrorHandler (ErrorHandlerFunc_t newhandler) |
| Set an errorhandler function. Returns the old handler. More...
|
|
void | SysError (const char *location, const char *va_(fmt),...) |
| Use this function in case a system (OS or GUI) related error occurred. More...
|
|
void | Warning (const char *location, const char *va_(fmt),...) |
| Use this function in warning situations. More...
|
|