CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Private Attributes
SimG4Exception Class Reference

#include <SimG4Exception.h>

Inheritance diagram for SimG4Exception:

Public Member Functions

 SimG4Exception (const std::string &message)
 
const char * what () const override throw ()
 
 ~SimG4Exception () override throw ()
 

Private Attributes

std::string error_
 

Detailed Description

Generic mantis exception. Can be thrown directly, or derived from. SimG4 should (ideally) only throw exceptions derived from this class.

Definition at line 13 of file SimG4Exception.h.

Constructor & Destructor Documentation

SimG4Exception::SimG4Exception ( const std::string &  message)
inline

Definition at line 15 of file SimG4Exception.h.

15 : error_(message) {}
std::string error_
SimG4Exception::~SimG4Exception ( )
throw (
)
inlineoverride

Definition at line 16 of file SimG4Exception.h.

16 {}

Member Function Documentation

const char* SimG4Exception::what ( ) const
throw (
)
inlineoverride

Definition at line 17 of file SimG4Exception.h.

References error_.

17 { return error_.c_str(); }
std::string error_

Member Data Documentation

std::string SimG4Exception::error_
private

Definition at line 20 of file SimG4Exception.h.

Referenced by what().