Inheritance diagram for std::runtime_error:


Public Member Functions | |
| runtime_error (const string &arg) | |
| virtual | ~runtime_error () throw () |
| virtual const char * | what () const throw () |
Private Attributes | |
| string | M_msg |
Runtime errors represent problems outside the scope of a program; they cannot be easily predicted and can generally only be caught as the program executes.
Definition at line 108 of file stdexcept.
| std::runtime_error::runtime_error | ( | const string & | arg | ) | [explicit] |
Takes a character string describing the error.
Definition at line 60 of file stdexcept.cc.
| const char * std::runtime_error::what | ( | ) | const throw () [virtual] |
Returns a C-style character string describing the general cause of the current error (the same string passed to the ctor).
Reimplemented from std::exception.
Definition at line 66 of file stdexcept.cc.
1.5.1