17 #ifndef NOSUCHOBJECTEXCEPTION_H 18 #define NOSUCHOBJECTEXCEPTION_H 21 #include "Exception.h" 31 std::string m_sReasonText;
37 { UpdateReasonText(); }
42 { UpdateReasonText(); }
47 { UpdateReasonText(); }
52 { UpdateReasonText(); }
61 m_sName = aCNoSuchObjectException.m_sName;
70 if (
this != &aCNoSuchObjectException) {
71 CException::operator= (aCNoSuchObjectException);
72 m_sName = aCNoSuchObjectException.m_sName;
83 (CException::operator== (aCNoSuchObjectException)) &&
84 (m_sName == aCNoSuchObjectException.m_sName)
90 std::string getName()
const 96 void setName (std::string am_sName)
103 virtual const char* ReasonText()
const;
106 void UpdateReasonText();
Definition: CNoSuchObjectException.h:28
Definition: Exception.h:41