CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes | Friends
cms::Exception Class Reference

#include <Exception.h>

Inheritance diagram for cms::Exception:
Clustering1DException cond::persistency::Exception DetLayerException edm::eventsetup::MakeDataException edm::eventsetup::NoDataExceptionBase edm::eventsetup::NoRecordException< T > edm::Exception edm::MultipleException edm::ProductDeletedException edmNew::CapacityExaustedException LinPtException MeasurementDetException npstat::NpstatException popcon::Exception PropagationException RPCException StatisticsException StripClusterizerAlgorithm::InvalidChargeException TrajectoryStateException TritonException VertexException

Public Member Functions

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 ()
 
virtual Exceptionclone () const
 
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 noexcept override
 
 ~Exception () noexcept override
 

Private Member Functions

void init (std::string const &message)
 
virtual void rethrow ()
 
virtual int returnCode_ () const
 

Private Attributes

std::list< std::string > additionalInfo_
 
bool alreadyPrinted_
 
std::string category_
 
std::list< std::string > context_
 
std::ostringstream ost_
 
std::string what_
 

Friends

template<typename E , typename T >
detail::Desired< E, detail::is_derived_or_same< Exception, std::remove_reference_t< E > >::value >::typeoperator<< (E &&e, T const &stuff)
 
template<typename E >
detail::Desired< E, detail::is_derived_or_same< Exception, std::remove_reference_t< E > >::value >::typeoperator<< (E &&e, std::ostream &(*f)(std::ostream &))
 
template<typename E >
detail::Desired< E, detail::is_derived_or_same< Exception, std::remove_reference_t< E > >::value >::typeoperator<< (E &&e, std::ios_base &(*f)(std::ios_base &))
 

Detailed Description

Definition at line 70 of file Exception.h.

Constructor & Destructor Documentation

◆ Exception() [1/8]

Exception::Exception ( std::string const &  aCategory)
explicit

Definition at line 6 of file Exception.cc.

Referenced by clone().

7  : std::exception(), ost_(), category_(aCategory), what_(), context_(), additionalInfo_(), alreadyPrinted_(false) {}
std::list< std::string > additionalInfo_
Definition: Exception.h:189
std::ostringstream ost_
Definition: Exception.h:184
std::string category_
Definition: Exception.h:185
std::list< std::string > context_
Definition: Exception.h:188
bool alreadyPrinted_
Definition: Exception.h:190
std::string what_
Definition: Exception.h:187

◆ Exception() [2/8]

Exception::Exception ( char const *  aCategory)
explicit

Definition at line 9 of file Exception.cc.

10  : std::exception(),
11  ost_(),
12  category_(std::string(aCategory)),
13  what_(),
14  context_(),
16  alreadyPrinted_(false) {}
std::list< std::string > additionalInfo_
Definition: Exception.h:189
std::ostringstream ost_
Definition: Exception.h:184
std::string category_
Definition: Exception.h:185
std::list< std::string > context_
Definition: Exception.h:188
bool alreadyPrinted_
Definition: Exception.h:190
std::string what_
Definition: Exception.h:187

◆ Exception() [3/8]

Exception::Exception ( std::string const &  aCategory,
std::string const &  message 
)

Definition at line 18 of file Exception.cc.

References init(), and message().

19  : std::exception(), ost_(), category_(aCategory), what_(), context_(), additionalInfo_(), alreadyPrinted_(false) {
20  init(message);
21  }
std::list< std::string > additionalInfo_
Definition: Exception.h:189
std::ostringstream ost_
Definition: Exception.h:184
std::string category_
Definition: Exception.h:185
std::string message() const
Definition: Exception.cc:145
std::list< std::string > context_
Definition: Exception.h:188
bool alreadyPrinted_
Definition: Exception.h:190
std::string what_
Definition: Exception.h:187
void init(std::string const &message)
Definition: Exception.cc:50

◆ Exception() [4/8]

Exception::Exception ( char const *  aCategory,
std::string const &  message 
)

Definition at line 23 of file Exception.cc.

References init(), and message().

24  : std::exception(),
25  ost_(),
26  category_(std::string(aCategory)),
27  what_(),
28  context_(),
30  alreadyPrinted_(false) {
31  init(message);
32  }
std::list< std::string > additionalInfo_
Definition: Exception.h:189
std::ostringstream ost_
Definition: Exception.h:184
std::string category_
Definition: Exception.h:185
std::string message() const
Definition: Exception.cc:145
std::list< std::string > context_
Definition: Exception.h:188
bool alreadyPrinted_
Definition: Exception.h:190
std::string what_
Definition: Exception.h:187
void init(std::string const &message)
Definition: Exception.cc:50

◆ Exception() [5/8]

Exception::Exception ( std::string const &  aCategory,
char const *  message 
)

Definition at line 34 of file Exception.cc.

References init(), message(), and AlCaHLTBitMon_QueryRunRegistry::string.

35  : std::exception(), ost_(), category_(aCategory), what_(), context_(), additionalInfo_(), alreadyPrinted_(false) {
37  }
std::list< std::string > additionalInfo_
Definition: Exception.h:189
std::ostringstream ost_
Definition: Exception.h:184
std::string category_
Definition: Exception.h:185
std::string message() const
Definition: Exception.cc:145
std::list< std::string > context_
Definition: Exception.h:188
bool alreadyPrinted_
Definition: Exception.h:190
std::string what_
Definition: Exception.h:187
void init(std::string const &message)
Definition: Exception.cc:50

◆ Exception() [6/8]

Exception::Exception ( char const *  aCategory,
char const *  message 
)

Definition at line 39 of file Exception.cc.

References init(), message(), and AlCaHLTBitMon_QueryRunRegistry::string.

40  : std::exception(),
41  ost_(),
42  category_(std::string(aCategory)),
43  what_(),
44  context_(),
46  alreadyPrinted_(false) {
48  }
std::list< std::string > additionalInfo_
Definition: Exception.h:189
std::ostringstream ost_
Definition: Exception.h:184
std::string category_
Definition: Exception.h:185
std::string message() const
Definition: Exception.cc:145
std::list< std::string > context_
Definition: Exception.h:188
bool alreadyPrinted_
Definition: Exception.h:190
std::string what_
Definition: Exception.h:187
void init(std::string const &message)
Definition: Exception.cc:50

◆ Exception() [7/8]

Exception::Exception ( std::string const &  aCategory,
std::string const &  message,
Exception const &  another 
)

Definition at line 59 of file Exception.cc.

References append(), message(), and ost_.

60  : std::exception(),
61  ost_(),
62  category_(aCategory),
63  what_(),
64  context_(another.context()),
65  additionalInfo_(another.additionalInfo()),
66  alreadyPrinted_(false) {
67  ost_ << message;
68  // check for newline at end of message first
69  if (!message.empty() && message[message.size() - 1] != '\n') {
70  ost_ << "\n";
71  }
72  append(another);
73  }
std::list< std::string > additionalInfo_
Definition: Exception.h:189
void append(Exception const &another)
Definition: Exception.cc:153
std::ostringstream ost_
Definition: Exception.h:184
std::string category_
Definition: Exception.h:185
std::string message() const
Definition: Exception.cc:145
std::list< std::string > context_
Definition: Exception.h:188
bool alreadyPrinted_
Definition: Exception.h:190
std::string what_
Definition: Exception.h:187

◆ Exception() [8/8]

Exception::Exception ( Exception const &  other)

Definition at line 75 of file Exception.cc.

References ost_, and trackingPlots::other.

76  : std::exception(),
77  ost_(),
78  category_(other.category_),
79  what_(other.what_),
80  context_(other.context_),
81  additionalInfo_(other.additionalInfo_),
82  alreadyPrinted_(other.alreadyPrinted_) {
83  ost_ << other.ost_.str();
84  }
std::list< std::string > additionalInfo_
Definition: Exception.h:189
std::ostringstream ost_
Definition: Exception.h:184
std::string category_
Definition: Exception.h:185
std::list< std::string > context_
Definition: Exception.h:188
bool alreadyPrinted_
Definition: Exception.h:190
std::string what_
Definition: Exception.h:187

◆ ~Exception()

Exception::~Exception ( )
overridenoexcept

Definition at line 86 of file Exception.cc.

86 {}

Member Function Documentation

◆ addAdditionalInfo() [1/2]

void Exception::addAdditionalInfo ( std::string const &  info)

◆ addAdditionalInfo() [2/2]

void Exception::addAdditionalInfo ( char const *  info)

Definition at line 171 of file Exception.cc.

References additionalInfo_, info(), and AlCaHLTBitMon_QueryRunRegistry::string.

171 { additionalInfo_.push_back(std::string(info)); }
std::list< std::string > additionalInfo_
Definition: Exception.h:189
static const TGPicture * info(bool iBackgroundIsBlack)

◆ addContext() [1/2]

void Exception::addContext ( std::string const &  context)

Definition at line 165 of file Exception.cc.

References context(), and context_.

Referenced by edm::storage::DavixFile::abort(), edm::ThinnedAssociationsHelper::addAssociation(), edm::addContextAndPrintException(), edm::UnscheduledCallProducer::addContextToException(), edm::ProductRegistry::addElementTypesForAliases(), edm::eventsetup::ComponentFactory< T >::addTo(), edm::eventsetup::ComponentMaker< edm::eventsetup::LooperMakerTraits, TType >::addTo(), edm::eventsetup::EventSetupRecordImpl::addTraceInfoToCmsException(), edm::eventsetup::EventSetupRecord::addTraceInfoToCmsException(), L1GlobalTriggerObjectMaps::algorithmResult(), L1GlobalTriggerObjectMaps::AlgorithmResult::AlgorithmResult(), CompareToObjectMapRecord::analyze(), edm::EventProcessor::beginJob(), edm::Worker::beginJob(), edm::Worker::beginStream(), edm::storage::LocalCacheFile::cache(), edm::storage::DavixStorageMaker::check(), ALPAKA_ACCELERATOR_NAMESPACE::detail::chooseDevice(), cms::cuda::chooseDevice(), cms::alpakatools::chooseDevice(), edm::storage::DavixFile::close(), L1GlobalTriggerObjectMaps::consistencyCheck(), edm::serviceregistry::ServicesManager::createServiceFor(), edm::service::SiteLocalConfigService::dataCatalogs(), edm::Worker::endJob(), edm::Worker::endStream(), edm::exceptionContext(), edm::Path::exceptionContext(), edm::Schedule::fillModuleAndConsumesInfo(), edm::InputFileCatalog::findFile(), edm::StreamSchedule::finishedPaths(), edm::storage::XrdFile::getActiveFile(), XrdAdaptor::RequestManager::getActiveFile(), L1GlobalTriggerObjectMaps::getCombinationsInCondition(), L1GlobalTriggerObjectMaps::ConditionsInAlgorithm::getConditionResult(), L1GlobalTriggerObjectMaps::CombinationsInCondition::getObjectIndex(), edm::eventsetup::DependentRecordImplementation< EcalMappingRcd, edm::mpl::Vector< EcalMappingElectronicsRcd > >::getRecord(), L1GlobalTriggerObjectMaps::getStartEndIndex(), fwlite::DataGetterHelper::getThinnedKeyFrom(), BareRootProductGetter::getThinnedKeyFrom(), edm::EventPrincipal::getThinnedKeyFrom(), XrdAdaptor::Source::handle(), XrdAdaptor::RequestManager::handle(), XrdAdaptor::ClientRequest::HandleResponse(), XrdAdaptor::RequestManager::OpenHandler::HandleResponseWithHosts(), edm::FileLocator::init(), edm::InputFileCatalog::init(), edm::BranchDescription::initFromDictionary(), XrdAdaptor::RequestManager::initialize(), edm::RootInputFileSequence::initTheFile(), l1t::L1TGlobalUtilHelper::L1TGlobalUtilHelper(), edm::storage::LocalCacheFile::LocalCacheFile(), edm::makeInput(), nowrite(), edm::storage::DCacheFile::open(), edm::storage::DavixFile::open(), edm::storage::XrdFile::open(), XrdAdaptor::RequestManager::OpenHandler::open(), edm::StreamerInputFile::openStreamerFile(), operator<<(), edm::service::SiteLocalConfigService::parse(), XrdAdaptor::RequestManager::pickSingleSource(), edm::storage::DavixFile::position(), edm::storage::DCacheFile::position(), edm::storage::XrdFile::position(), ConvertObjectMapRecord::produce(), edm::storage::DavixFile::read(), edm::storage::DCacheFile::read(), edm::storage::XrdFile::read(), DQMTTreeIO::TreeObjectReader< T >::read(), edm::StreamerInputFile::readBytes(), DQMRootSource::readFile_(), edm::storage::DavixFile::readv(), edm::storage::DCacheFile::readv(), edm::storage::XrdFile::readv(), edm::Worker::registerThinnedAssociations(), XrdAdaptor::RequestManager::requestFailure(), edm::storage::DavixFile::resize(), edm::storage::XrdFile::resize(), edm::storage::XrdStorageMaker::setDebugLevel(), edm::StreamerInputFile::skipBytes(), XrdAdaptor::RequestManager::splitClientRequest(), edm::storage::DCacheStorageMaker::stagein(), edm::service::SiteLocalConfigService::storageDescriptionPath(), edm::Maker::throwConfigurationException(), throwStorageError(), edm::Maker::throwValidationException(), edm::service::SiteLocalConfigService::trivialDataCatalogs(), L1GlobalTriggerObjectMaps::updateOperandTokenVector(), edm::validateTopLevelParameterSets(), edm::storage::DavixFile::write(), edm::storage::DCacheFile::write(), edm::storage::XrdFile::write(), edm::ConfigurationDescriptions::writeCfiForLabel(), and edm::RootOutputFile::writeIndexIntoFile().

165 { context_.push_back(context); }
std::list< std::string > context_
Definition: Exception.h:188
std::list< std::string > const & context() const
Definition: Exception.cc:147

◆ addContext() [2/2]

void Exception::addContext ( char const *  context)

Definition at line 167 of file Exception.cc.

References context(), context_, and AlCaHLTBitMon_QueryRunRegistry::string.

167 { context_.push_back(std::string(context)); }
std::list< std::string > context_
Definition: Exception.h:188
std::list< std::string > const & context() const
Definition: Exception.cc:147

◆ additionalInfo()

std::list< std::string > const & Exception::additionalInfo ( ) const

Definition at line 149 of file Exception.cc.

References additionalInfo_.

149 { return additionalInfo_; }
std::list< std::string > additionalInfo_
Definition: Exception.h:189

◆ alreadyPrinted()

bool Exception::alreadyPrinted ( ) const

Definition at line 177 of file Exception.cc.

References alreadyPrinted_.

177 { return alreadyPrinted_; }
bool alreadyPrinted_
Definition: Exception.h:190

◆ append() [1/3]

void Exception::append ( Exception const &  another)

◆ append() [2/3]

void Exception::append ( std::string const &  more_information)

Definition at line 155 of file Exception.cc.

References ost_.

Referenced by diclist.diclist::add().

155 { ost_ << more_information; }
std::ostringstream ost_
Definition: Exception.h:184

◆ append() [3/3]

void Exception::append ( char const *  more_information)

Definition at line 157 of file Exception.cc.

References ost_.

Referenced by diclist.diclist::add().

157 { ost_ << more_information; }
std::ostringstream ost_
Definition: Exception.h:184

◆ category()

std::string const & Exception::category ( void  ) const

◆ clearAdditionalInfo()

void Exception::clearAdditionalInfo ( )

Definition at line 163 of file Exception.cc.

References additionalInfo_.

Referenced by XrdAdaptor::RequestManager::initialize().

163 { additionalInfo_.clear(); }
std::list< std::string > additionalInfo_
Definition: Exception.h:189

◆ clearContext()

void Exception::clearContext ( )

Definition at line 161 of file Exception.cc.

References context_.

Referenced by XrdAdaptor::RequestManager::initialize().

161 { context_.clear(); }
std::list< std::string > context_
Definition: Exception.h:188

◆ clearMessage()

void Exception::clearMessage ( )

Definition at line 159 of file Exception.cc.

References ost_.

Referenced by XrdAdaptor::RequestManager::initialize(), and edm::StreamerInputFile::openStreamerFile().

159 { ost_.str(""); }
std::ostringstream ost_
Definition: Exception.h:184

◆ clone()

Exception * Exception::clone ( void  ) const
virtual

Reimplemented in edm::Exception, and edm::MultipleException.

Definition at line 181 of file Exception.cc.

References Exception().

Referenced by edm::ExceptionCollector::call(), and edm::Path::workerFinished().

181 { return new Exception(*this); }
Exception(std::string const &aCategory)
Definition: Exception.cc:6

◆ context()

std::list< std::string > const & Exception::context ( ) const

◆ explainSelf()

std::string Exception::explainSelf ( ) const
virtual

Definition at line 108 of file Exception.cc.

References additionalInfo_, c, category_, context_, submitPVResolutionJobs::count, mps_fire::i, ost_, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by edm::ExceptionCollector::call(), TritonException::convertToWarning(), L1GtUtils::LogicalExpressionL1Results::initialize(), CachedTrajectory::propagate(), TrajectoryStateClosestToPoint::TrajectoryStateClosestToPoint(), and what().

108  {
109  std::ostringstream ost;
110 
111  if (context_.empty()) {
112  ost << "An exception of category '" << category_ << "' occurred.\n";
113  } else {
114  ost << "An exception of category '" << category_ << "' occurred while\n";
115  int count = 0;
116  for (std::list<std::string>::const_reverse_iterator i = context_.rbegin(), iEnd = context_.rend(); i != iEnd;
117  ++i, ++count) {
118  ost << " [" << count << "] " << *i << "\n";
119  }
120  }
121 
122  std::string centralMessage(ost_.str());
123  if (!centralMessage.empty()) {
124  ost << "Exception Message:\n";
125  ost << centralMessage;
126  if (centralMessage[centralMessage.size() - 1] != '\n') {
127  ost << "\n";
128  }
129  }
130 
131  if (!additionalInfo_.empty()) {
132  ost << " Additional Info:\n";
133  char c = 'a';
134  for (std::list<std::string>::const_reverse_iterator i = additionalInfo_.rbegin(), iEnd = additionalInfo_.rend();
135  i != iEnd;
136  ++i, ++c) {
137  ost << " [" << c << "] " << *i << "\n";
138  }
139  }
140  return ost.str();
141  }
std::list< std::string > additionalInfo_
Definition: Exception.h:189
std::ostringstream ost_
Definition: Exception.h:184
std::string category_
Definition: Exception.h:185
std::list< std::string > context_
Definition: Exception.h:188

◆ history()

std::list< std::string > Exception::history ( ) const

Definition at line 187 of file Exception.cc.

References category_.

187  {
188  std::list<std::string> returnValue;
189  returnValue.push_back(category_);
190  return returnValue;
191  }
std::string category_
Definition: Exception.h:185

◆ init()

void Exception::init ( std::string const &  message)
private

Definition at line 50 of file Exception.cc.

References message(), and ost_.

Referenced by Exception().

50  {
51  ost_ << message;
52  if (!message.empty()) {
53  unsigned sz = message.size() - 1;
54  if (message[sz] != '\n' && message[sz] != ' ')
55  ost_ << " ";
56  }
57  }
std::ostringstream ost_
Definition: Exception.h:184
std::string message() const
Definition: Exception.cc:145

◆ message()

std::string Exception::message ( ) const

Definition at line 145 of file Exception.cc.

References ost_.

Referenced by append(), edm::eventsetup::NoDataExceptionBase::constructMessage(), Exception(), and init().

145 { return ost_.str(); }
std::ostringstream ost_
Definition: Exception.h:184

◆ operator=()

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

Definition at line 97 of file Exception.cc.

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

97  {
99  this->swap(temp);
100  return *this;
101  }
void swap(Exception &other)
Definition: Exception.cc:88

◆ raise()

void cms::Exception::raise ( )
inline

Definition at line 101 of file Exception.h.

Referenced by HLTBTagHarvestingAnalyzer::GetNumDenumerators().

101 { rethrow(); }
virtual void rethrow()
Definition: Exception.cc:183

◆ rethrow()

void Exception::rethrow ( )
privatevirtual

Reimplemented in edm::Exception.

Definition at line 183 of file Exception.cc.

183 { throw *this; }

◆ returnCode()

int Exception::returnCode ( ) const

Definition at line 151 of file Exception.cc.

References returnCode_().

Referenced by edm::addContextAndPrintException(), and edm::ExceptionCollector::call().

151 { return returnCode_(); }
virtual int returnCode_() const
Definition: Exception.cc:185

◆ returnCode_()

int Exception::returnCode_ ( ) const
privatevirtual

Reimplemented in edm::Exception, and edm::MultipleException.

Definition at line 185 of file Exception.cc.

Referenced by returnCode().

185 { return 8001; }

◆ setAdditionalInfo()

void Exception::setAdditionalInfo ( std::list< std::string > const &  info)

Definition at line 175 of file Exception.cc.

References additionalInfo_, and info().

175 { additionalInfo_ = info; }
std::list< std::string > additionalInfo_
Definition: Exception.h:189
static const TGPicture * info(bool iBackgroundIsBlack)

◆ setAlreadyPrinted()

void Exception::setAlreadyPrinted ( bool  value)

◆ setContext()

void Exception::setContext ( std::list< std::string > const &  context)

Definition at line 173 of file Exception.cc.

References context(), and context_.

173 { context_ = context; }
std::list< std::string > context_
Definition: Exception.h:188
std::list< std::string > const & context() const
Definition: Exception.cc:147

◆ swap()

void Exception::swap ( Exception other)

Definition at line 88 of file Exception.cc.

References additionalInfo_, alreadyPrinted_, category_, context_, ost_, trackingPlots::other, std::swap(), and what_.

Referenced by operator=().

88  {
89  ost_ << other.ost_.str();
90  category_.swap(other.category_);
91  what_.swap(other.what_);
92  context_.swap(other.context_);
93  additionalInfo_.swap(other.additionalInfo_);
94  std::swap(alreadyPrinted_, other.alreadyPrinted_);
95  }
std::list< std::string > additionalInfo_
Definition: Exception.h:189
std::ostringstream ost_
Definition: Exception.h:184
std::string category_
Definition: Exception.h:185
void swap(edm::DataFrameContainer &lhs, edm::DataFrameContainer &rhs)
std::list< std::string > context_
Definition: Exception.h:188
bool alreadyPrinted_
Definition: Exception.h:190
std::string what_
Definition: Exception.h:187

◆ what()

char const * Exception::what ( ) const
overridenoexcept

Definition at line 103 of file Exception.cc.

References explainSelf(), and what_.

Referenced by L1CondDBPayloadWriterExt::analyze(), SiStripDetVOffFakeBuilder::analyze(), SiPixelLorentzAngleDB::analyze(), SiPixelVCalDB::analyze(), SiPixelDynamicInefficiencyDB::analyze(), DiMuonVertexMonitor::analyze(), L1CondDBPayloadWriter::analyze(), cms::SiPixelCondObjBuilder::analyze(), cms::SiPixelCondObjForHLTBuilder::analyze(), cms::SiPixelCondObjOfflineBuilder::analyze(), PrimaryVertexValidation::analyze(), FWPFCandidateDetailView::build(), FWPFPatJet3DProxyBuilder< reco::PFJet >::build(), FWPFCandidateDetailView::buildGLEventScene(), magneticfield::MagGeoBuilder::buildInterpolator(), MagGeoBuilderFromDDD::buildInterpolator(), SiPixelGainCalibScaler::computeAndStorePalyoads(), SiPixelLorentzAnglePCLHarvester::dqmEndJob(), SiPixelLorentzAnglePCLHarvesterMCS::dqmEndJob(), FWModelChangeManager::endChanges(), edm::MessageLoggerQ::handshakedCommand(), L1GtUtils::LogicalExpressionL1Results::initialize(), PhotonConversionTrajectorySeedProducerFromQuadrupletsAlgo::inspect(), main(), Vx3DHLTAnalyzer::MyFit(), cond::XMLAuthenticationService::XMLAuthenticationService::processFile(), PhotonConversionTrajectorySeedProducerFromQuadruplets::produce(), CaloTruthCellsProducer::produce(), edm::storage::XrdFile::readv(), and DTCalibDBUtils::writeToDB().

103  {
104  what_ = explainSelf();
105  return what_.c_str();
106  }
virtual std::string explainSelf() const
Definition: Exception.cc:108
std::string what_
Definition: Exception.h:187

Friends And Related Function Documentation

◆ operator<< [1/3]

template<typename E , typename T >
detail::Desired<E, detail::is_derived_or_same<Exception, std::remove_reference_t<E> >::value>::type& operator<< ( E &&  e,
T const &  stuff 
)
friend

Definition at line 202 of file Exception.h.

202  {
203  e.ost_ << stuff;
204  return e;
205  }

◆ operator<< [2/3]

template<typename E >
detail::Desired<E, detail::is_derived_or_same<Exception, std::remove_reference_t<E> >::value>::type& operator<< ( E &&  e,
std::ostream &(*)(std::ostream &)  f 
)
friend

Definition at line 209 of file Exception.h.

209  {
210  f(e.ost_);
211  return e;
212  }
double f[11][100]

◆ operator<< [3/3]

template<typename E >
detail::Desired<E, detail::is_derived_or_same<Exception, std::remove_reference_t<E> >::value>::type& operator<< ( E &&  e,
std::ios_base &(*)(std::ios_base &)  f 
)
friend

Definition at line 216 of file Exception.h.

216  {
217  f(e.ost_);
218  return e;
219  }
double f[11][100]

Member Data Documentation

◆ additionalInfo_

std::list<std::string> cms::Exception::additionalInfo_
private

◆ alreadyPrinted_

bool cms::Exception::alreadyPrinted_
private

Definition at line 190 of file Exception.h.

Referenced by alreadyPrinted(), setAlreadyPrinted(), and swap().

◆ category_

std::string cms::Exception::category_
private

Definition at line 185 of file Exception.h.

Referenced by category(), explainSelf(), history(), and swap().

◆ context_

std::list<std::string> cms::Exception::context_
private

Definition at line 188 of file Exception.h.

Referenced by addContext(), clearContext(), context(), explainSelf(), setContext(), and swap().

◆ ost_

std::ostringstream cms::Exception::ost_
private

Definition at line 184 of file Exception.h.

Referenced by append(), clearMessage(), Exception(), explainSelf(), init(), message(), and swap().

◆ what_

std::string cms::Exception::what_
mutableprivate

Definition at line 187 of file Exception.h.

Referenced by swap(), and what().