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

◆ FSException()

tfxx::error::FSException::FSException ( const char *  message,
const char *  file,
const int &  line,
const int &  en 
)

Create with message, failed assertion, and code position.

Definition at line 46 of file exception.cc.

References fs_report(), and tfxx::error::Exception::report_on_construct_is_true().

49  :
50  TBase(message, file, line, "file system utility returned error"),
51  Merrno(en)
52  {
53  if (this->report_on_construct_is_true()) { this->fs_report(); }
54  }
bool report_on_construct_is_true() const
Definition: error.h:108
void fs_report() const
my report
Definition: exception.cc:62
tfxx::error::Exception TBase
base class
Definition: fs.h:76
int Merrno
error number
Definition: fs.h:92
Here is the call graph for this function: