The Gaudi Framework  v29r0 (ff2e7097)
UpdateManagerException.h
Go to the documentation of this file.
1 #ifndef GAUDIKERNEL_UPDATEMANAGEREXCEPTION_H
2 #define GAUDIKERNEL_UPDATEMANAGEREXCEPTION_H 1
3 
4 // Include files
6 
17 {
18 public:
20  UpdateManagerException( const std::string& Message = "unspecified exception",
21  const std::string& Tag = "*UpdateManagerSvc*", const StatusCode& Code = StatusCode::FAILURE )
22  : GaudiException( Message, Tag, Code )
23  {
24  }
25 
27  const GaudiException& Ex )
28  : GaudiException( Message, Tag, Code, Ex )
29  {
30  }
31 
33  virtual ~UpdateManagerException() throw() {}
34 
36  virtual UpdateManagerException* clone() const override { return new UpdateManagerException( *this ); }
37 };
38 #endif // GAUDIKERNEL_UPDATEMANAGEREXCEPTION_H
Define general base for Gaudi exception.
UpdateManagerException(const std::string &Message, const std::string &Tag, const StatusCode &Code, const GaudiException &Ex)
STL class.
virtual ~UpdateManagerException()
Destructor.
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:28
Exception thrown by the UpdateManagerSvc when something goes wrong.
UpdateManagerException(const std::string &Message="unspecified exception", const std::string &Tag="*UpdateManagerSvc*", const StatusCode &Code=StatusCode::FAILURE)
Standard constructor.
The Message class.
Definition: Message.h:15
virtual UpdateManagerException * clone() const override
Clone the exception.
#define GAUDI_API
Definition: Kernel.h:110