CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
VertexException.h
Go to the documentation of this file.
1 
4 #ifndef Vertex_Exceptions_H
5 #define Vertex_Exceptions_H
6 
8 #include <string>
9 
11 
13 public:
15  VertexException(const std::string& message) throw() : cms::Exception("VertexException"), theMessage(message) {}
16  ~VertexException() throw() override {}
17  const char* what() const throw() override { return theMessage.c_str(); }
18 
19 private:
21 };
22 
23 #endif
Common base class.
std::string message() const
Definition: Exception.cc:145
VertexException(const std::string &message)
std::string theMessage
~VertexException() override
const char * what() const override