33 #ifndef EXCEPTION_H //Required for current class 39 #define kACTIONSIZE 1024 // Size of action message. 45 char m_szAction[kACTIONSIZE] ;
66 int operator== (
const CException& aCException)
const;
67 int operator!= (
const CException& rException)
const{
68 return !(operator==(rException));
75 const char* getAction()
const 83 void setAction (
const char* pszAction);
84 void setAction (
const std::string& rsAction);
89 virtual const char* ReasonText ()
const ;
90 virtual int ReasonCode ()
const ;
91 const char* WasDoing ()
const ;
Definition: Exception.h:41