#include <CigiExceptions.h>
Inheritance diagram for CigiPacketTooLargeException:
Public Member Functions | |
CigiPacketTooLargeException (void) | |
virtual | ~CigiPacketTooLargeException (void) throw () |
Protected Attributes | |
char | ErrMsg [25] |
Definition at line 512 of file CigiExceptions.h.
CigiPacketTooLargeException::CigiPacketTooLargeException | ( | void | ) | [inline] |
General Constructor for the CigiPacketTooLargeException exception class
Definition at line 521 of file CigiExceptions.h.
References CIGI_ERROR_PACKET_TOO_LARGE.
00522 { 00523 memcpy(ErrMsg,"Packet Is Too Large\n",23); 00524 Msg = ErrMsg; 00525 ErrorCode = CIGI_ERROR_PACKET_TOO_LARGE; 00526 }
virtual CigiPacketTooLargeException::~CigiPacketTooLargeException | ( | void | ) | throw () [inline, virtual] |
General Destructor for the CigiPacketTooLargeException exception class
Definition at line 532 of file CigiExceptions.h.
char CigiPacketTooLargeException::ErrMsg[25] [protected] |
Definition at line 532 of file CigiExceptions.h.