|
Gaudi Framework, version v22r0 |
| Home | Generated: 9 Feb 2011 |
Exception thrown by the UpdateManagerSvc when something goes wrong. More...
#include <GaudiKernel/UpdateManagerException.h>


Public Member Functions | |
| UpdateManagerException (const std::string &Message="unspecified exception", const std::string &Tag="*UpdateManagerSvc*", const StatusCode &Code=StatusCode::FAILURE) | |
| Standard constructor. | |
| UpdateManagerException (const std::string &Message, const std::string &Tag, const StatusCode &Code, const GaudiException &Ex) | |
| virtual | ~UpdateManagerException () throw () |
| Destructor. | |
| virtual UpdateManagerException * | clone () const |
| Clone the exception. | |
Exception thrown by the UpdateManagerSvc when something goes wrong.
Definition at line 17 of file UpdateManagerException.h.
| UpdateManagerException::UpdateManagerException | ( | const std::string & | Message = "unspecified exception", |
|
| const std::string & | Tag = "*UpdateManagerSvc*", |
|||
| const StatusCode & | Code = StatusCode::FAILURE | |||
| ) | [inline] |
Standard constructor.
Definition at line 20 of file UpdateManagerException.h.
00023 : GaudiException(Message,Tag,Code) {}
| UpdateManagerException::UpdateManagerException | ( | const std::string & | Message, | |
| const std::string & | Tag, | |||
| const StatusCode & | Code, | |||
| const GaudiException & | Ex | |||
| ) | [inline] |
Definition at line 25 of file UpdateManagerException.h.
00029 : GaudiException(Message,Tag,Code,Ex) {}
| virtual UpdateManagerException::~UpdateManagerException | ( | ) | throw () [inline, virtual] |
| virtual UpdateManagerException* UpdateManagerException::clone | ( | ) | const [inline, virtual] |
Clone the exception.
Reimplemented from GaudiException.
Definition at line 35 of file UpdateManagerException.h.
00035 { return new UpdateManagerException(*this); }