#include <CigiExceptions.h>
Inheritance diagram for CigiBufferTooSmallException:
Public Member Functions | |
CigiBufferTooSmallException (void) | |
virtual | ~CigiBufferTooSmallException (void) throw () |
Protected Attributes | |
char | ErrMsg [30] |
Definition at line 125 of file CigiExceptions.h.
CigiBufferTooSmallException::CigiBufferTooSmallException | ( | void | ) | [inline] |
General Constructor for the CigiBufferTooSmallException exception class
Definition at line 134 of file CigiExceptions.h.
References CIGI_ERROR_BUFFER_TOO_SMALL.
00135 { 00136 memcpy(ErrMsg,"Buffer Too Small Error\n",26); 00137 Msg = ErrMsg; 00138 ErrorCode = CIGI_ERROR_BUFFER_TOO_SMALL; 00139 }
virtual CigiBufferTooSmallException::~CigiBufferTooSmallException | ( | void | ) | throw () [inline, virtual] |
General Destructor for the CigiBufferTooSmallException exception class
Definition at line 146 of file CigiExceptions.h.
char CigiBufferTooSmallException::ErrMsg[30] [protected] |
Definition at line 146 of file CigiExceptions.h.