#include <myexcept.h>
Inheritance diagram for Bad_alloc:
Public Member Functions | |
Bad_alloc (const char *a_what=0) | |
Static Public Attributes | |
unsigned long | Select |
|
Definition at line 462 of file myexcept.cpp. References Exception::AddMessage(), Tracer::AddTrace(), Exception::Select, and Select.
00462 : Exception() 00463 { 00464 Select = Exception::Select; 00465 AddMessage("bad allocation\n"); AddMessage(a_what); 00466 if (a_what) Tracer::AddTrace(); 00467 } |
|
Reimplemented from Exception. Definition at line 482 of file myexcept.cpp. Referenced by Bad_alloc(). |