#include <CigiExceptions.h>
Inheritance diagram for CigiNullPointerException:
Public Member Functions | |
CigiNullPointerException (void) | |
virtual | ~CigiNullPointerException (void) throw () |
Protected Attributes | |
char | ErrMsg [25] |
Definition at line 480 of file CigiExceptions.h.
CigiNullPointerException::CigiNullPointerException | ( | void | ) | [inline] |
General Constructor for the CigiNullPointerException exception class
Definition at line 489 of file CigiExceptions.h.
References CIGI_ERROR_UNEXPECTED_NULL.
00490 { 00491 memcpy(ErrMsg,"Null Pointer Error\n",21); 00492 Msg = ErrMsg; 00493 ErrorCode = CIGI_ERROR_UNEXPECTED_NULL; 00494 }
virtual CigiNullPointerException::~CigiNullPointerException | ( | void | ) | throw () [inline, virtual] |
General Destructor for the CigiNullPointerException exception class
Definition at line 500 of file CigiExceptions.h.
char CigiNullPointerException::ErrMsg[25] [protected] |
Definition at line 500 of file CigiExceptions.h.