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

◆ UTException()

tfxx::numeric::RNGgaussian::UTException::UTException ( const char *  type,
const char *  file,
const int &  line,
const char *  condition 
)

Create with message, failed assertion, and code position.

Definition at line 137 of file rng.cc.

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

140  :
141  TBase("unkown RNG type requested", file, line, condition),
142  Mtype(type)
143  {
144  if (this->report_on_construct_is_true())
145  {
146  std::cerr << " Requested RNG type: " << Mtype << std::endl;
147  }
148  } // RNGgaussian::UTException::UTException
tfxx::error::Exception TBase
base class
Definition: rng.h:122
std::string type() const
return type of random number generator
Definition: rng.h:94
const char * Mtype
pointer name string of requested RNG type
Definition: rng.h:132
bool report_on_construct_is_true() const
Definition: error.h:108
Here is the call graph for this function: