Interface provided through error.h.
More...
|
file | error.h |
| exceptions and error handling macros (prototypes)
|
|
|
#define | FAPIDXX_abort(M) throw( fapidxx::error::Exception ( M , __FILE__, __LINE__ )) |
| Abort and give a message. More...
|
|
#define | FAPIDXX_assert(C, M) FAPIDXX_Xassert( C , M , fapidxx::error::Exception ) |
| Check an assertion and report by throwing an exception. More...
|
|
#define | FAPIDXX_fuassert(C, U, M) if (!(C)) { throw( fapidxx::error::FUException ( U , M , __FILE__, __LINE__, #C )); } |
| Check an assertion and report by throwing an exception. More...
|
|
#define | FAPIDXX_Xassert(C, M, E) if (!(C)) { throw( E ( M , __FILE__, __LINE__, #C )); } |
| Check an assertion and report by throwing an exception. More...
|
|
Interface provided through error.h.