#include <CigiExceptions.h>
Inheritance diagram for CigiMissingStartOfFrameException:
Public Member Functions | |
CigiMissingStartOfFrameException (void) | |
virtual | ~CigiMissingStartOfFrameException (void) throw () |
Protected Attributes | |
char | ErrMsg [55] |
Definition at line 416 of file CigiExceptions.h.
CigiMissingStartOfFrameException::CigiMissingStartOfFrameException | ( | void | ) | [inline] |
General Constructor for the CigiMissingStartOfFrameException exception class
Definition at line 425 of file CigiExceptions.h.
References CIGI_ERROR_MISSING_SOF_PACKET.
00426 { 00427 memcpy(ErrMsg,"The Message Is Missing The Start Of Frame Packet\n",52); 00428 Msg = ErrMsg; 00429 ErrorCode = CIGI_ERROR_MISSING_SOF_PACKET; 00430 }
virtual CigiMissingStartOfFrameException::~CigiMissingStartOfFrameException | ( | void | ) | throw () [inline, virtual] |
General Destructor for the CigiMissingStartOfFrameException exception class
Definition at line 436 of file CigiExceptions.h.
char CigiMissingStartOfFrameException::ErrMsg[55] [protected] |
Definition at line 436 of file CigiExceptions.h.