UpdateManagerException.h
Go to the documentation of this file.
1 #ifndef GAUDIKERNEL_UPDATEMANAGEREXCEPTION_H
2 #define GAUDIKERNEL_UPDATEMANAGEREXCEPTION_H 1
3 
4 // Include files
5 #include "GaudiKernel/GaudiException.h"
6 
17 public:
19  UpdateManagerException( const std::string& Message = "unspecified exception",
20  const std::string& Tag = "*UpdateManagerSvc*",
21  const StatusCode & Code = StatusCode::FAILURE ):
22  GaudiException(Message,Tag,Code) {}
23 
24  UpdateManagerException( const std::string& Message,
25  const std::string& Tag,
26  const StatusCode & Code,
27  const GaudiException& Ex ):
28  GaudiException(Message,Tag,Code,Ex) {}
29 
31  virtual ~UpdateManagerException() throw () {}
32 
34  virtual UpdateManagerException* clone() const { return new UpdateManagerException(*this); }
35 
36 };
37 #endif // GAUDIKERNEL_UPDATEMANAGEREXCEPTION_H
Define general base for Gaudi exception.
#define GAUDI_API
Definition: Kernel.h:107
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
Exception thrown by the UpdateManagerSvc when something goes wrong.
virtual GaudiException * clone() const
clone operation
The Message class.
Definition: Message.h:14