#include <CigiExceptions.h>
Inheritance diagram for CigiInvalidPacketSizeException:
Public Member Functions | |
CigiInvalidPacketSizeException (void) | |
virtual | ~CigiInvalidPacketSizeException (void) throw () |
Protected Attributes | |
char | ErrMsg [25] |
Definition at line 255 of file CigiExceptions.h.
CigiInvalidPacketSizeException::CigiInvalidPacketSizeException | ( | void | ) | [inline] |
General Constructor for the CigiInvalidPacketSizeException exception class
Definition at line 264 of file CigiExceptions.h.
References CIGI_ERROR_INVALID_PACKET_SIZE.
00265 { 00266 memcpy(ErrMsg,"Invalid Packet Size\n",23); 00267 Msg = ErrMsg; 00268 ErrorCode = CIGI_ERROR_INVALID_PACKET_SIZE; 00269 }
virtual CigiInvalidPacketSizeException::~CigiInvalidPacketSizeException | ( | void | ) | throw () [inline, virtual] |
General Destructor for the CigiInvalidPacketSizeException exception class
Definition at line 275 of file CigiExceptions.h.
char CigiInvalidPacketSizeException::ErrMsg[25] [protected] |
Definition at line 275 of file CigiExceptions.h.