Changeset d77b51d in git for external/fastjet/Error.hh
- Timestamp:
- Sep 29, 2015, 2:08:10 PM (9 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- a98c7ef
- Parents:
- d870fc5 (diff), 06ec139 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
external/fastjet/Error.hh
rd870fc5 rd77b51d 3 3 4 4 //FJSTARTHEADER 5 // $Id: Error.hh 3 694 2014-09-18 13:21:54Z soyez $5 // $Id: Error.hh 3809 2015-02-20 13:05:13Z soyez $ 6 6 // 7 7 // Copyright (c) 2005-2014, Matteo Cacciari, Gavin P. Salam and Gregory Soyez … … 96 96 97 97 98 /// @ingroup error_handling 99 /// \class InternalError 100 /// class corresponding to critical internal errors 101 /// 102 /// This is an error class (derived from Error) meant for serious, 103 /// critical, internal errors that we still want to be catchable by an 104 /// end-user [e.g. a serious issue in clustering where the end-user 105 /// can catch it and retry with a different strategy] 106 /// 107 /// Please directly contact the FastJet authors if you see such an 108 /// error. 109 class InternalError : public Error{ 110 public: 111 /// ctor with error message: 112 /// just add a bit of info to the message and pass it to the base class 113 InternalError(const std::string & message_in) : Error(std::string("*** CRITICAL INTERNAL FASTJET ERROR *** CONTACT THE AUTHORS *** ") + message_in){ } 114 }; 115 116 98 117 FASTJET_END_NAMESPACE 99 118
Note:
See TracChangeset
for help on using the changeset viewer.