--- branches/windows_from_1431_trunk/esysUtils/src/EsysException.h 2008/02/28 10:47:57 1447 +++ branches/windows_from_1431_trunk/esysUtils/src/EsysException.h 2008/02/28 12:31:04 1448 @@ -42,7 +42,10 @@ None */ - class EsysException:public std::exception { + class EsysException : public std::exception + { + + typedef std::exception Parent; public: /** @@ -71,23 +74,15 @@ * \brief Copy constructor - @param inException Input - EsysException + @param other Input - EsysException */ - EsysException(const EsysException &inException); + EsysException(const EsysException &other); /// Destructor virtual ~EsysException() THROW(); /** \brief - Assignment operator. - - @param inException Input - Exception to be copied. - */ - EsysException &operator=(const EsysException &inException); - - /** - \brief Return the exception message in the form <Exception Name>: <Exception Message>