CException( BOOL b_AutoDelete );
Parameters
bAutoDelete
Specify TRUE if the memory for the CException object has been allocated on the heap. This will cause the CException object to be deleted when the Delete member function is called to delete the exception. Specify FALSE if the CException object is on the stack or is a global object. In this case, the CException object will not be deleted when the Delete member function is called.
Remarks
This member function constructs a CException object. You should not directly create a CException object using new. Use this constructor when you derive a class from Cexception.