#include <CigiExceptions.h>
Inheritance diagram for CigiNotImplementedException:
Public Member Functions | |
CigiNotImplementedException (void) | |
virtual | ~CigiNotImplementedException (void) throw () |
Protected Attributes | |
char | ErrMsg [30] |
Definition at line 448 of file CigiExceptions.h.
CigiNotImplementedException::CigiNotImplementedException | ( | void | ) | [inline] |
General Constructor for the CigiNotImplementedException exception class
Definition at line 457 of file CigiExceptions.h.
References CIGI_ERROR_NOT_IMPLEMENTED.
00458 { 00459 memcpy(ErrMsg,"Not Implemented Error\n",25); 00460 Msg = ErrMsg; 00461 ErrorCode = CIGI_ERROR_NOT_IMPLEMENTED; 00462 }
virtual CigiNotImplementedException::~CigiNotImplementedException | ( | void | ) | throw () [inline, virtual] |
General Destructor for the CigiNotImplementedException exception class
Definition at line 468 of file CigiExceptions.h.
char CigiNotImplementedException::ErrMsg[30] [protected] |
Definition at line 468 of file CigiExceptions.h.