ATLAS Offline Software
HistogramException.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef AthenaMonitoringKernel_HistogramFiller_HistogramException_h
6 #define AthenaMonitoringKernel_HistogramFiller_HistogramException_h
7 
8 #include <stdexcept>
9 
10 namespace Monitored {
14  struct HistogramException: public std::runtime_error {
20  HistogramException(std::string const& message)
21  : std::runtime_error(message) {}
22  };
23 }
24 
25 #endif /* AthenaMonitoringKernel_HistogramFiller_HistogramException_h */
Monitored::HistogramException
Represents error occurred during accessing histograms objects.
Definition: HistogramException.h:14
ReweightUtils.message
message
Definition: ReweightUtils.py:15
Monitored
Generic monitoring tool for athena components.
Definition: GenericMonitoringTool.h:30
Monitored::HistogramException::HistogramException
HistogramException(std::string const &message)
Default constructor.
Definition: HistogramException.h:20