#include <myexcept.h>
Inheritance diagram for Runtime_error:
Public Member Functions | |
Runtime_error (const char *a_what=0) | |
Static Public Attributes | |
unsigned long | Select |
|
Definition at line 398 of file myexcept.cpp. References Exception::AddMessage(), Tracer::AddTrace(), Exception::Select, and Select.
00399 : Exception() 00400 { 00401 Select = Exception::Select; 00402 AddMessage("Runtime error:- "); AddMessage(a_what); 00403 if (a_what) Tracer::AddTrace(); 00404 } |
|
Reimplemented from Exception. Reimplemented in Range_error, and Overflow_error. Definition at line 473 of file myexcept.cpp. Referenced by Runtime_error(). |