#include <CigiExceptions.h>
Inheritance diagram for CigiAllocFailedException:
Public Member Functions | |
CigiAllocFailedException (void) | |
virtual | ~CigiAllocFailedException (void) throw () |
Protected Attributes | |
char | ErrMsg [25] |
Definition at line 61 of file CigiExceptions.h.
CigiAllocFailedException::CigiAllocFailedException | ( | void | ) | [inline] |
General Constructor for the CigiAllocFailedException exception class
Definition at line 70 of file CigiExceptions.h.
References CIGI_ERROR_ALLOC_FAILED.
00071 { 00072 memcpy(ErrMsg,"Allocation Failure\n",21); 00073 Msg = ErrMsg; 00074 ErrorCode = CIGI_ERROR_ALLOC_FAILED; 00075 }
virtual CigiAllocFailedException::~CigiAllocFailedException | ( | void | ) | throw () [inline, virtual] |
General Destructor for the CigiAllocFailedException exception class
Definition at line 81 of file CigiExceptions.h.
char CigiAllocFailedException::ErrMsg[25] [protected] |
Definition at line 81 of file CigiExceptions.h.