Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:29:19

0001 /** Exceptions thrown from RecoVertex dependent subsystems.
0002  */
0003 
0004 #ifndef Vertex_Exceptions_H
0005 #define Vertex_Exceptions_H
0006 
0007 #include "FWCore/Utilities/interface/Exception.h"
0008 #include <string>
0009 
0010 /// Common base class
0011 
0012 class VertexException : public cms::Exception {
0013 public:
0014   VertexException() : cms::Exception("VertexException") {}
0015   explicit VertexException(const std::string& message) : cms::Exception("VertexException", message) {}
0016 };
0017 
0018 #endif