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

◆ Exception() [5/5]

aff::Exception::Exception ( const char *  message,
const char *  file,
const int &  line 
)

Create with message and code position.

construct with message and file info

Definition at line 71 of file error.cc.

References Mreport_on_construct, and report().

73  :
74  Mmessage(message), Mfile(file), Mline(line), Mcondition(0)
75  { if (Mreport_on_construct) { report(); } }
const char * Mmessage
pointer to message string
Definition: error.h:108
virtual void report() const
Screen report.
Definition: error.cc:98
static bool Mreport_on_construct
Shall we print to cerr at construction time?
Definition: error.h:106
const int & Mline
pointer to line number in source file
Definition: error.h:112
const char * Mcondition
pointer to assertion condition text string
Definition: error.h:114
const char * Mfile
pointer to file name string
Definition: error.h:110
Here is the call graph for this function: