AFF --- A container for numbers (array) by Friederich and Forbriger.
Error handling module

Classes

class  aff::Exception
 Base class for exceptions. More...
 
class  aff::AllocException
 Exception thrown in case of allocation error. More...
 

Macros

#define AFF_Xassert(C, M, E)   if (!(C)) { throw( E ( M , __FILE__, __LINE__, #C )); }
 Check an assertion and report by throwing an exception. More...
 
#define AFF_assert(C, M)   AFF_Xassert( C , M , aff::Exception )
 Check an assertion and report by throwing an exception. More...
 
#define AFF_abort(M)   throw( aff::Exception ( M , __FILE__, __LINE__ ))
 Abort and give a message. More...
 

Detailed Description