TF++, Miscellaneous classes and modules in C++:

◆ Exception() [1/5]

tfxx::error::Exception::Exception ( )

Creates exception with no explaning comments.

construct from nothing

Definition at line 53 of file error.cc.

References base_report(), and report_on_construct_is_true().

53  :
54  Mmessage(NULL), Mfile(NULL), Mline(0), Mcondition(NULL)
55  { if (this->report_on_construct_is_true()) { base_report(); } }
bool report_on_construct_is_true() const
Definition: error.h:108
const char * Mfile
pointer to file name string
Definition: error.h:118
int Mline
pointer to line number in source file
Definition: error.h:120
const char * Mcondition
pointer to assertion condition text string
Definition: error.h:122
const char * Mmessage
pointer to message string
Definition: error.h:116
void base_report() const
Screen report.
Definition: error.cc:114
Here is the call graph for this function: