GslErrorException.h
Go to the documentation of this file.
1 #ifndef GAUDIGSL_GSLERRORException_H
2 #define GAUDIGSL_GSLERRORException_H 1
3 // Include files
4 // from STL
5 #include <string>
6 // from GaudiKernel
7 #include "GaudiKernel/AlgTool.h"
8 // from GaudiGSL
10 #include "GaudiGSL/GslError.h"
11 // forward declaration
12 
26 class GslErrorException: public extends<AlgTool,
27  IGslErrorHandler> {
28 public:
29 
36  StatusCode handle( const GslError& error ) const override;
37 
44  ( const std::string& type ,
45  const std::string& name ,
46  const IInterface* parent );
47 
49  ~GslErrorException( ) override = default;
50 
51 private:
52 
55 
56 };
57 
58 // ============================================================================
59 // The END
60 // ============================================================================
61 #endif // GAUDIGSL_GSLERRORException_H
62 // ============================================================================
std::vector< int > m_ignore
codes to be ignored:
Helper class to represent GSL errors.
Definition: GslError.h:15
STL class.
MsgStream & error() const
shortcut for the method msgStream(MSG::ERROR)
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
Definition of the basic interface.
Definition: IInterface.h:234
GslErrorException(const std::string &type, const std::string &name, const IInterface *parent)
Standard constructor.
StatusCode handle(const GslError &error) const override
handle the GSL error
Base class used to extend a class implementing other interfaces.
Definition: extends.h:10
Concrete GSL eror handler It is just thrown the exception.
const std::string & type() const override
Retrieve type (concrete class) of the sub-algtool.
Definition: AlgTool.cpp:72
~GslErrorException() override=default
destructor (protected and virtual)
const std::string & name() const override
Retrieve full identifying name of the concrete tool object.
Definition: AlgTool.cpp:65
const IInterface * parent() const override
Retrieve parent of the sub-algtool.
Definition: AlgTool.cpp:79