Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:47

0001 #ifndef HeterogeneousCore_SonicTriton_TritonException
0002 #define HeterogeneousCore_SonicTriton_TritonException
0003 
0004 #include "FWCore/Utilities/interface/Exception.h"
0005 
0006 #include <string>
0007 
0008 class TritonException : public cms::Exception {
0009 public:
0010   explicit TritonException(std::string const& aCategory, bool signal = false);
0011   void convertToWarning() const;
0012 };
0013 
0014 #endif