CMS 3D CMS Logo

VertexException.h
Go to the documentation of this file.
1 
4 #ifndef Vertex_Exceptions_H
5 #define Vertex_Exceptions_H
6 
7 #include <exception>
8 #include <string>
9 
11 
13 public:
15  VertexException( const std::string& message) throw() : theMessage(message) {}
16  ~VertexException() throw() override {}
17  const char* what() const throw() override { return theMessage.c_str();}
18 private:
20 };
21 
22 #endif
Common base class.
VertexException(const std::string &message)
std::string theMessage
~VertexException() override
const char * what() const override