The Gaudi Framework
v30r3 (a5ef0a68)
|
The collection of Error Handlers for GSL. More...
Functions | |
GAUDI_API void | ignoreTheError (const char *reason, const char *file, int line, int code) |
The simplest Gsl Error handler, It simply ingnores the error. More... | |
GAUDI_API void | handleTheError (const char *reason, const char *file, int line, int code) |
The simplest Gsl Error handler, It delegates the actual error handling to GSL Service. More... | |
GAUDI_API void | throwException (const char *reason, const char *file, int line, int code) |
The simple Gsl Error handler, it throwns the Gaudi Exception. More... | |
The collection of Error Handlers for GSL.
void GslErrorHandlers::handleTheError | ( | const char * | reason, |
const char * | file, | ||
int | line, | ||
int | code | ||
) |
The simplest Gsl Error handler, It delegates the actual error handling to GSL Service.
reason | error reason (message) |
file | file name |
line | line number |
code | error code |
Definition at line 28 of file GslErrorHandlers.cpp.
void GslErrorHandlers::ignoreTheError | ( | const char * | reason, |
const char * | file, | ||
int | line, | ||
int | code | ||
) |
The simplest Gsl Error handler, It simply ingnores the error.
reason | error reason (message) |
file | file name |
line | line number |
code | error code |
Definition at line 23 of file GslErrorHandlers.cpp.
void GslErrorHandlers::throwException | ( | const char * | reason, |
const char * | file, | ||
int | line, | ||
int | code | ||
) |
The simple Gsl Error handler, it throwns the Gaudi Exception.
GaudiException |
reason | error reason (message) |
file | file name |
line | line number |
code | error code |
Definition at line 38 of file GslErrorHandlers.cpp.