ATLAS Offline Software
Public Member Functions | Private Attributes | List of all members
LArConditionsException Class Reference

#include <LArConditionsException.h>

Collaboration diagram for LArConditionsException:

Public Member Functions

 LArConditionsException ()
 
 LArConditionsException (const std::string &message)
 
virtual ~LArConditionsException ()
 
virtual const std::string & what () const
 
virtual const std::string & message () const
 
virtual operator std::string () const
 

Private Attributes

std::string m_message
 

Detailed Description

Definition at line 13 of file LArConditionsException.h.

Constructor & Destructor Documentation

◆ LArConditionsException() [1/2]

LArConditionsException::LArConditionsException ( )
inline

Definition at line 16 of file LArConditionsException.h.

16 : m_message("No message") {};

◆ LArConditionsException() [2/2]

LArConditionsException::LArConditionsException ( const std::string &  message)
inline

Definition at line 17 of file LArConditionsException.h.

17 : m_message(message) {};

◆ ~LArConditionsException()

virtual LArConditionsException::~LArConditionsException ( )
inlinevirtual

Definition at line 19 of file LArConditionsException.h.

19 {};

Member Function Documentation

◆ message()

virtual const std::string& LArConditionsException::message ( ) const
inlinevirtual

Definition at line 22 of file LArConditionsException.h.

22 { return m_message;}

◆ operator std::string()

virtual LArConditionsException::operator std::string ( ) const
inlinevirtual

Definition at line 23 of file LArConditionsException.h.

23 { return m_message;}

◆ what()

virtual const std::string& LArConditionsException::what ( ) const
inlinevirtual

Definition at line 21 of file LArConditionsException.h.

21 { return m_message;}

Member Data Documentation

◆ m_message

std::string LArConditionsException::m_message
private

Definition at line 26 of file LArConditionsException.h.


The documentation for this class was generated from the following file:
LArConditionsException::m_message
std::string m_message
Definition: LArConditionsException.h:26
LArConditionsException::message
virtual const std::string & message() const
Definition: LArConditionsException.h:22