#include <CigiExceptions.h>
Inheritance diagram for CigiInvalidSessionTypeException:
Public Member Functions | |
CigiInvalidSessionTypeException (void) | |
virtual | ~CigiInvalidSessionTypeException (void) throw () |
Protected Attributes | |
char | ErrMsg [25] |
Definition at line 319 of file CigiExceptions.h.
CigiInvalidSessionTypeException::CigiInvalidSessionTypeException | ( | void | ) | [inline] |
General Constructor for the CigiInvalidSessionTypeException exception class
Definition at line 328 of file CigiExceptions.h.
References CIGI_ERROR_INVALID_SESSION_TYPE.
00329 { 00330 memcpy(ErrMsg,"Invalid Session Type\n",24); 00331 Msg = ErrMsg; 00332 ErrorCode = CIGI_ERROR_INVALID_SESSION_TYPE; 00333 }
virtual CigiInvalidSessionTypeException::~CigiInvalidSessionTypeException | ( | void | ) | throw () [inline, virtual] |
General Destructor for the CigiInvalidSessionTypeException exception class
Definition at line 339 of file CigiExceptions.h.
char CigiInvalidSessionTypeException::ErrMsg[25] [protected] |
Definition at line 339 of file CigiExceptions.h.