#include <CigiExceptions.h>
Inheritance diagram for CigiInvalidPacketException:
Public Member Functions | |
CigiInvalidPacketException (void) | |
virtual | ~CigiInvalidPacketException (void) throw () |
Protected Attributes | |
char | ErrMsg [25] |
Definition at line 223 of file CigiExceptions.h.
CigiInvalidPacketException::CigiInvalidPacketException | ( | void | ) | [inline] |
General Constructor for the CigiInvalidPacketException exception class
Definition at line 232 of file CigiExceptions.h.
References CIGI_ERROR_INVALID_PACKET.
00233 { 00234 memcpy(ErrMsg,"Invalid Packet\n",18); 00235 Msg = ErrMsg; 00236 ErrorCode = CIGI_ERROR_INVALID_PACKET; 00237 }
virtual CigiInvalidPacketException::~CigiInvalidPacketException | ( | void | ) | throw () [inline, virtual] |
General Destructor for the CigiInvalidPacketException exception class
Definition at line 243 of file CigiExceptions.h.
char CigiInvalidPacketException::ErrMsg[25] [protected] |
Definition at line 243 of file CigiExceptions.h.