Interface provided through error.h.
More...
|
file | error.h |
| exceptions and error handling macros (prototypes)
|
|
|
#define | TFXX_Xassert(C, M, E) if (!(C)) { throw( E ( M , __FILE__, __LINE__, #C )); } |
| Check an assertion and report by throwing an exception. More...
|
|
#define | TFXX_assert(C, M) TFXX_Xassert( C , M , tfxx::error::Exception ) |
| Check an assertion and report by throwing an exception. More...
|
|
#define | TFXX_abort(M) throw( tfxx::error::Exception ( M , __FILE__, __LINE__ )) |
| Abort and give a message. More...
|
|
Interface provided through error.h.