CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes
edm::Exception Class Reference

#include <EDMException.h>

Inheritance diagram for edm::Exception:
cms::Exception XrdAdaptor::XrootdException

Public Types

typedef errors::ErrorCodes Code
 

Public Member Functions

Code categoryCode () const
 
Exceptionclone () const override
 
 Exception (Code category)
 
 Exception (Code category, std::string const &message)
 
 Exception (Code category, char const *message)
 
 Exception (Code category, std::string const &message, cms::Exception const &another)
 
 Exception (Code category, char const *message, cms::Exception const &another)
 
 Exception (Exception const &other)
 
Exceptionoperator= (Exception const &other)
 
void swap (Exception &other)
 
 ~Exception () noexcept override
 
- Public Member Functions inherited from cms::Exception
void addAdditionalInfo (std::string const &info)
 
void addAdditionalInfo (char const *info)
 
void addContext (std::string const &context)
 
void addContext (char const *context)
 
std::list< std::string > const & additionalInfo () const
 
bool alreadyPrinted () const
 
void append (Exception const &another)
 
void append (std::string const &more_information)
 
void append (char const *more_information)
 
std::string const & category () const
 
void clearAdditionalInfo ()
 
void clearContext ()
 
void clearMessage ()
 
std::list< std::string > const & context () const
 
 Exception (std::string const &aCategory)
 
 Exception (char const *aCategory)
 
 Exception (std::string const &aCategory, std::string const &message)
 
 Exception (char const *aCategory, std::string const &message)
 
 Exception (std::string const &aCategory, char const *message)
 
 Exception (char const *aCategory, char const *message)
 
 Exception (std::string const &aCategory, std::string const &message, Exception const &another)
 
 Exception (Exception const &other)
 
virtual std::string explainSelf () const
 
std::list< std::string > history () const
 
std::string message () const
 
Exceptionoperator= (Exception const &other)
 
void raise ()
 
int returnCode () const
 
void setAdditionalInfo (std::list< std::string > const &info)
 
void setAlreadyPrinted ()
 
void setContext (std::list< std::string > const &context)
 
void swap (Exception &other)
 
char const * what () const noexcept override
 
 ~Exception () noexcept override
 

Static Public Member Functions

static const std::string & codeToString (Code)
 -----------— implementation details ---------------— More...
 
static void throwThis (Code category, char const *message0="", char const *message1="", char const *message2="", char const *message3="", char const *message4="")
 
static void throwThis (Code category, char const *message0, int intVal, char const *message2="")
 

Private Member Functions

void rethrow () override
 
int returnCode_ () const override
 

Private Attributes

Code category_
 

Detailed Description

Definition at line 82 of file EDMException.h.

Member Typedef Documentation

◆ Code

Definition at line 84 of file EDMException.h.

Constructor & Destructor Documentation

◆ Exception() [1/6]

Exception::Exception ( Code  category)
explicit

Definition at line 60 of file EDMException.cc.

Referenced by clone().

60 : cms::Exception(codeToString(aCategory)), category_(aCategory) {}
static const std::string & codeToString(Code)
-----------— implementation details ---------------—
Definition: EDMException.cc:55

◆ Exception() [2/6]

Exception::Exception ( Code  category,
std::string const &  message 
)

Definition at line 62 of file EDMException.cc.

63  : cms::Exception(codeToString(aCategory), message), category_(aCategory) {}
static const std::string & codeToString(Code)
-----------— implementation details ---------------—
Definition: EDMException.cc:55
std::string message() const
Definition: Exception.cc:149

◆ Exception() [3/6]

Exception::Exception ( Code  category,
char const *  message 
)

Definition at line 65 of file EDMException.cc.

66  : cms::Exception(codeToString(aCategory), std::string(message)), category_(aCategory) {}
static const std::string & codeToString(Code)
-----------— implementation details ---------------—
Definition: EDMException.cc:55
std::string message() const
Definition: Exception.cc:149

◆ Exception() [4/6]

Exception::Exception ( Code  category,
std::string const &  message,
cms::Exception const &  another 
)

Definition at line 68 of file EDMException.cc.

69  : cms::Exception(codeToString(aCategory), message, another), category_(aCategory) {}
static const std::string & codeToString(Code)
-----------— implementation details ---------------—
Definition: EDMException.cc:55
std::string message() const
Definition: Exception.cc:149

◆ Exception() [5/6]

Exception::Exception ( Code  category,
char const *  message,
cms::Exception const &  another 
)

Definition at line 71 of file EDMException.cc.

72  : cms::Exception(codeToString(aCategory), std::string(message), another), category_(aCategory) {}
static const std::string & codeToString(Code)
-----------— implementation details ---------------—
Definition: EDMException.cc:55
std::string message() const
Definition: Exception.cc:149

◆ Exception() [6/6]

Exception::Exception ( Exception const &  other)

Definition at line 74 of file EDMException.cc.

◆ ~Exception()

Exception::~Exception ( )
overridenoexcept

Definition at line 76 of file EDMException.cc.

76 {}

Member Function Documentation

◆ categoryCode()

Code edm::Exception::categoryCode ( ) const
inline

Definition at line 102 of file EDMException.h.

Referenced by edm::RootFile::RootFile().

102 { return category_; }

◆ clone()

Exception * Exception::clone ( void  ) const
overridevirtual

Reimplemented from cms::Exception.

Definition at line 103 of file EDMException.cc.

References Exception().

103 { return new Exception(*this); }
Exception(Code category)
Definition: EDMException.cc:60

◆ codeToString()

const std::string & Exception::codeToString ( Code  c)
static

-----------— implementation details ---------------—

Definition at line 55 of file EDMException.cc.

References DummyCfis::c, edm::errors::codeMap, spr::find(), mps_fire::i, and edm::errors::kUnknownCode().

Referenced by edm::Path::handleWorkerFailure().

55  {
56  auto i(errors::codeMap.find(c));
57  return i != errors::codeMap.end() ? i->second : errors::kUnknownCode;
58  }
static const std::string kUnknownCode("unknownCode")
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:19
static const std::map< ErrorCodes, std::string > codeMap
Definition: EDMException.cc:9

◆ operator=()

Exception & Exception::operator= ( Exception const &  other)

Definition at line 78 of file EDMException.cc.

References trackingPlots::other, swap(), and groupFilesInBlocks::temp.

78  {
80  this->swap(temp);
81  return *this;
82  }
void swap(Exception &other)
Definition: EDMException.h:98

◆ rethrow()

void Exception::rethrow ( )
overrideprivatevirtual

Reimplemented from cms::Exception.

Definition at line 105 of file EDMException.cc.

105 { throw *this; }

◆ returnCode_()

int Exception::returnCode_ ( ) const
overrideprivatevirtual

Reimplemented from cms::Exception.

Definition at line 84 of file EDMException.cc.

References category_.

84 { return static_cast<int>(category_); }

◆ swap()

void edm::Exception::swap ( Exception other)
inline

Definition at line 98 of file EDMException.h.

References trackingPlots::other, and edm::swap().

Referenced by operator=().

98 { std::swap(category_, other.category_); }
void swap(Association< C > &lhs, Association< C > &rhs)
Definition: Association.h:112

◆ throwThis() [1/2]

void Exception::throwThis ( Code  category,
char const *  message0 = "",
char const *  message1 = "",
char const *  message2 = "",
char const *  message3 = "",
char const *  message4 = "" 
)
static

Definition at line 86 of file EDMException.cc.

References MillePedeFileConverter_cfg::e, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by edm::dsrvdetail::_throw_range(), edm::detail::_throw_range(), edm::eventsetup::ComponentFactory< T >::addTo(), edm::helpers::checkRef(), edm::reftobase::RefVectorHolder< REFV >::const_iterator_imp_specific::dc(), edm::reftobase::IndirectVectorHolder< T >::const_iterator_imp_specific::dc(), edm::reftobase::VectorHolder< T, REFV >::const_iterator_imp_specific::dc(), edm::detailsTrie::errorInsert(), edm::ServiceRegistry::get(), edm::serviceregistry::ServicesManager::get(), edm::AssociationMap< edm::OneToOne< std::vector< Trajectory >, reco::GsfTrackCollection, unsigned short > >::get(), edm::Handle< GenericObject >::Handle(), edm::Handle< FWGenericObject >::Handle(), edm::OneToValue< BasicClusterCollection, float, unsigned short >::insert(), edm::OneToMany< std::vector< Trajectory >, std::vector< TrajectorySeed >, unsigned int >::insert(), edm::OneToOneGeneric< std::vector< TrackCandidate >, std::vector< Trajectory >, unsigned int >::insert(), edm::OneToManyWithQualityGeneric< TrackingVertexCollection, edm::View< reco::Vertex >, double, unsigned int >::insert(), edm::ServiceRegistry::isAvailable(), edm::reftobase::RefProdKey::key(), edm::makeRefTo(), edm::reftobase::InvalidHolderToVector< T, REF >::makeVectorHolder(), edm::reftobase::InvalidRefHolderToRefVector< REF >::makeVectorHolder(), edm::reftobase::RefVectorHolderBase::const_iterator::operator*(), edm::reftobase::RefVectorHolderBase::const_iterator::operator+(), edm::reftobase::RefVectorHolderBase::const_iterator::operator++(), edm::reftobase::RefVectorHolderBase::const_iterator::operator+=(), edm::reftobase::RefVectorHolderBase::const_iterator::operator-(), edm::reftobase::RefVectorHolderBase::const_iterator::operator--(), edm::reftobase::RefVectorHolderBase::const_iterator::operator-=(), edm::RefToBaseProd< T >::operator->(), edm::reftobase::RefVectorHolderBase::const_iterator::operator<(), edm::reftobase::RefVectorHolder< REFV >::push_back(), edm::reftobase::IndirectVectorHolder< T >::push_back(), edm::reftobase::VectorHolder< T, REFV >::push_back(), edm::detail::reallyfillPtrVector(), edm::detail::reallySetPtr(), edm::ESProducer::registerProduct(), edm::helper::Filler< Association< C > >::throwAdd(), edm::helper::Filler< Association< C > >::throwFillSize(), edm::ValueMap< math::XYZTLorentzVector >::throwIndexBound(), edm::Association< C >::throwIndexMapBound(), edm::reftobase::BaseVectorHolder< T >::const_iterator::throwInvalidReference(), edm::ValueMap< math::XYZTLorentzVector >::throwNotExisting(), and edm::Association< C >::throwRefSet().

91  {
92  Exception e(aCategory, std::string(message0));
93  e << message1 << message2 << message3 << message4;
94  throw e;
95  }

◆ throwThis() [2/2]

void Exception::throwThis ( Code  category,
char const *  message0,
int  intVal,
char const *  message2 = "" 
)
static

Definition at line 97 of file EDMException.cc.

References MillePedeFileConverter_cfg::e, and AlCaHLTBitMon_QueryRunRegistry::string.

97  {
98  Exception e(aCategory, std::string(message0));
99  e << intVal << message1;
100  throw e;
101  }

Member Data Documentation

◆ category_

Code edm::Exception::category_
private

Definition at line 120 of file EDMException.h.

Referenced by returnCode_().