ATLAS Offline Software
Loading...
Searching...
No Matches
CaloCond::VersionConflict Class Reference

Thrown if object version in BLOB does not agree with class version. More...

#include <Exception.h>

Inheritance diagram for CaloCond::VersionConflict:
Collaboration diagram for CaloCond::VersionConflict:

Public Member Functions

 VersionConflict (const std::string &domain, unsigned int version_is, unsigned int version_should=0)
virtual ~VersionConflict () throw ()
virtual const char * what () const throw ()
virtual const std::string & domain () const

Protected Member Functions

virtual void setMessage (const std::string &message)

Private Attributes

std::string m_domain
std::string m_message

Detailed Description

Thrown if object version in BLOB does not agree with class version.

Definition at line 64 of file Calorimeter/CaloCondBlobObjs/CaloCondBlobObjs/Exception.h.

Constructor & Destructor Documentation

◆ VersionConflict()

CaloCond::VersionConflict::VersionConflict ( const std::string & domain,
unsigned int version_is,
unsigned int version_should = 0 )
inlineexplicit

Definition at line 66 of file Calorimeter/CaloCondBlobObjs/CaloCondBlobObjs/Exception.h.

69 : Exception( domain, "" )
70 {
71 std::ostringstream msg;
72 msg << "Blob Version conflict. Is " << version_is;
73 if(version_should){ msg << " but should be " << version_should; }
74 setMessage(msg.str());
75 }
Exception(const std::string &domain, const std::string &message)
virtual void setMessage(const std::string &message)
MsgStream & msg
Definition testRead.cxx:32

◆ ~VersionConflict()

virtual CaloCond::VersionConflict::~VersionConflict ( )
throw ( )
inlinevirtual

Member Function Documentation

◆ domain()

virtual const std::string & CaloCond::Exception::domain ( ) const
inlinevirtualinherited

◆ setMessage()

virtual void CaloCond::Exception::setMessage ( const std::string & message)
inlineprotectedvirtualinherited

◆ what()

virtual const char * CaloCond::Exception::what ( ) const
throw ( )
inlinevirtualinherited

Definition at line 26 of file Calorimeter/CaloCondBlobObjs/CaloCondBlobObjs/Exception.h.

26 {
27 return m_message.c_str();
28 }

Member Data Documentation

◆ m_domain

std::string CaloCond::Exception::m_domain
privateinherited

◆ m_message

std::string CaloCond::Exception::m_message
privateinherited

The documentation for this class was generated from the following file: