LINEAR++ library: AFF to LAPACK

◆ Exception() [4/5]

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

Create with message, failed assertion, and code position.

construct with message and file info and condition

Definition at line 72 of file error.cc.

References Mreport_on_construct, and report().

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