ATLAS Offline Software
Loading...
Searching...
No Matches
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
10namespace 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 */
STL class.
Generic monitoring tool for athena components.
STL namespace.
HistogramException(std::string const &message)
Default constructor.