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 () 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 (bool value)
 
void setContext (std::list< std::string > const &context)
 
void swap (Exception &other)
 
char const * what () const override
 
 ~Exception () 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 76 of file EDMException.h.

Member Typedef Documentation

Definition at line 78 of file EDMException.h.

Constructor & Destructor Documentation

Exception::Exception ( Code  category)
explicit

Definition at line 58 of file EDMException.cc.

Referenced by clone().

58  :
59  cms::Exception(codeToString(aCategory)),
60  category_(aCategory) {
61  }
static const std::string & codeToString(Code)
-----------— implementation details ---------------—
Definition: EDMException.cc:53
Exception::Exception ( Code  category,
std::string const &  message 
)

Definition at line 63 of file EDMException.cc.

63  :
65  category_(aCategory) {
66  }
static const std::string & codeToString(Code)
-----------— implementation details ---------------—
Definition: EDMException.cc:53
std::string message() const
Definition: Exception.cc:187
Exception::Exception ( Code  category,
char const *  message 
)

Definition at line 68 of file EDMException.cc.

68  :
70  category_(aCategory) {
71  }
static const std::string & codeToString(Code)
-----------— implementation details ---------------—
Definition: EDMException.cc:53
std::string message() const
Definition: Exception.cc:187
Exception::Exception ( Code  category,
std::string const &  message,
cms::Exception const &  another 
)

Definition at line 73 of file EDMException.cc.

73  :
74  cms::Exception(codeToString(aCategory),message,another),
75  category_(aCategory) {
76  }
static const std::string & codeToString(Code)
-----------— implementation details ---------------—
Definition: EDMException.cc:53
std::string message() const
Definition: Exception.cc:187
Exception::Exception ( Code  category,
char const *  message,
cms::Exception const &  another 
)

Definition at line 78 of file EDMException.cc.

78  :
79  cms::Exception(codeToString(aCategory), std::string(message), another),
80  category_(aCategory) {
81  }
static const std::string & codeToString(Code)
-----------— implementation details ---------------—
Definition: EDMException.cc:53
std::string message() const
Definition: Exception.cc:187
Exception::Exception ( Exception const &  other)

Definition at line 83 of file EDMException.cc.

83  :
85  category_(other.category_) {
86  }
Exception::~Exception ( )
override

Definition at line 88 of file EDMException.cc.

88  {
89  }

Member Function Documentation

Code edm::Exception::categoryCode ( ) const
inline
Exception * Exception::clone ( void  ) const
overridevirtual

Reimplemented from cms::Exception.

Definition at line 122 of file EDMException.cc.

References Exception().

122  {
123  return new Exception(*this);
124  }
Exception(Code category)
Definition: EDMException.cc:58
const std::string & Exception::codeToString ( Code  c)
static

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

Definition at line 53 of file EDMException.cc.

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

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

53  {
54  auto i(errors::codeMap.find(c));
55  return i!=errors::codeMap.end() ? i->second : errors::kUnknownCode;
56  }
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:20
static const std::map< ErrorCodes, std::string > codeMap
Definition: EDMException.cc:8
Exception & Exception::operator= ( Exception const &  other)

Definition at line 92 of file EDMException.cc.

References swap(), and groupFilesInBlocks::temp.

92  {
94  this->swap(temp);
95  return *this;
96  }
void swap(Exception &other)
Definition: EDMException.h:92
void Exception::rethrow ( )
overrideprivatevirtual

Reimplemented from cms::Exception.

Definition at line 127 of file EDMException.cc.

127  {
128  throw *this;
129  }
int Exception::returnCode_ ( ) const
overrideprivatevirtual

Reimplemented from cms::Exception.

Definition at line 99 of file EDMException.cc.

References category_.

99  {
100  return static_cast<int>(category_);
101  }
void edm::Exception::swap ( Exception other)
inline

Definition at line 92 of file EDMException.h.

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

Referenced by operator=().

92  {
93  std::swap(category_, other.category_);
94  }
void swap(edm::DataFrameContainer &lhs, edm::DataFrameContainer &rhs)
void Exception::throwThis ( Code  category,
char const *  message0 = "",
char const *  message1 = "",
char const *  message2 = "",
char const *  message3 = "",
char const *  message4 = "" 
)
static

Definition at line 104 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::RefToBaseVector< T >::at(), edm::OwnArray< T, MAX_SIZE, P >::back(), edm::OwnVector< T, P >::back(), edm::RefToBase< T >::castTo(), 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::OwnArray< T, MAX_SIZE, P >::fillView(), edm::ServiceRegistry::get(), edm::serviceregistry::ServicesManager::get(), edm::AssociationMap< edm::OneToMany< reco::BasicJetCollection, reco::TrackCollection > >::get(), edm::Handle< GenericObject >::Handle(), edm::Handle< FWGenericObject >::Handle(), edm::OneToValue< reco::CaloJetCollection, reco::L2TauIsolationInfo >::insert(), edm::OneToMany< reco::TrackJetCollection, reco::TrackCollection >::insert(), edm::OneToOneGeneric< std::vector< TrackCandidate >, std::vector< Trajectory >, unsigned int >::insert(), edm::OneToManyWithQualityGeneric< std::vector< reco::Track >, std::vector< reco::Vertex >, int, unsigned int >::insert(), edm::ServiceRegistry::isAvailable(), edm::reftobase::RefProdKey::key(), edm::RefToBase< T >::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< reco::Candidate >::push_back(), edm::reftobase::VectorHolder< reco::Candidate, reco::GsfElectronRefVector >::push_back(), edm::detail::reallyfillPtrVector(), edm::detail::reallySetPtr(), edm::ESProducer::registerProduct(), edm::OwnVector< T, P >::swap(), edm::helper::Filler< Association< C > >::throwAdd(), edm::helper::Filler< Association< C > >::throwFillSize(), edm::ValueMap< edm::Ref< std::vector< reco::PFCandidate >, reco::PFCandidate, edm::refhelper::FindUsingAdvance< std::vector< reco::PFCandidate >, reco::PFCandidate > > >::throwIndexBound(), edm::Association< reco::FFTJPTJetCollection >::throwIndexMapBound(), edm::reftobase::BaseVectorHolder< T >::const_iterator::throwInvalidReference(), edm::ValueMap< edm::Ref< std::vector< reco::PFCandidate >, reco::PFCandidate, edm::refhelper::FindUsingAdvance< std::vector< reco::PFCandidate >, reco::PFCandidate > > >::throwNotExisting(), and edm::Association< reco::FFTJPTJetCollection >::throwRefSet().

109  {
110  Exception e(aCategory, std::string(message0));
111  e << message1 << message2 << message3 << message4;
112  throw e;
113  }
void Exception::throwThis ( Code  category,
char const *  message0,
int  intVal,
char const *  message2 = "" 
)
static

Definition at line 116 of file EDMException.cc.

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

116  {
117  Exception e(aCategory, std::string(message0));
118  e << intVal << message1;
119  throw e;
120  }

Member Data Documentation

Code edm::Exception::category_
private

Definition at line 117 of file EDMException.h.

Referenced by returnCode_().