#include <CigiExceptions.h>
Inheritance diagram for CigiCalledOutOfSequenceException:
Public Member Functions | |
CigiCalledOutOfSequenceException (void) | |
virtual | ~CigiCalledOutOfSequenceException (void) throw () |
Protected Attributes | |
char | ErrMsg [40] |
Definition at line 159 of file CigiExceptions.h.
CigiCalledOutOfSequenceException::CigiCalledOutOfSequenceException | ( | void | ) | [inline] |
General Constructor for the CigiCalledOutOfSequenceException exception class
Definition at line 168 of file CigiExceptions.h.
References CIGI_ERROR_CALLED_OUT_OF_SEQUENCE.
00169 { 00170 memcpy(ErrMsg,"Routine Call Out Of Sequence Error\n",38); 00171 Msg = ErrMsg; 00172 ErrorCode = CIGI_ERROR_CALLED_OUT_OF_SEQUENCE; 00173 }
virtual CigiCalledOutOfSequenceException::~CigiCalledOutOfSequenceException | ( | void | ) | throw () [inline, virtual] |
General Destructor for the CigiCalledOutOfSequenceException exception class
Definition at line 179 of file CigiExceptions.h.
char CigiCalledOutOfSequenceException::ErrMsg[40] [protected] |
Definition at line 179 of file CigiExceptions.h.