#include <CigiExceptions.h>
Inheritance diagram for CigiMaxSessionsException:
Public Member Functions | |
CigiMaxSessionsException (void) | |
virtual | ~CigiMaxSessionsException (void) throw () |
Protected Attributes | |
char | ErrMsg [50] |
Definition at line 351 of file CigiExceptions.h.
CigiMaxSessionsException::CigiMaxSessionsException | ( | void | ) | [inline] |
General Constructor for the CigiMaxSessionsException exception class
Definition at line 360 of file CigiExceptions.h.
References CIGI_ERROR_MAX_SESSIONS.
00361 { 00362 memcpy(ErrMsg,"Requested Number Of Sessions Exceeds Maximum\n",48); 00363 Msg = ErrMsg; 00364 ErrorCode = CIGI_ERROR_MAX_SESSIONS; 00365 }
virtual CigiMaxSessionsException::~CigiMaxSessionsException | ( | void | ) | throw () [inline, virtual] |
General Destructor for the CigiMaxSessionsException exception class
Definition at line 371 of file CigiExceptions.h.
char CigiMaxSessionsException::ErrMsg[50] [protected] |
Definition at line 371 of file CigiExceptions.h.