CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros 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)
 
virtual const char * what () const throw ()
 
virtual ~SimG4Exception () 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 16 of file SimG4Exception.h.

16 : error_(message) {}
std::string error_
virtual SimG4Exception::~SimG4Exception ( )
throw (
)
inlinevirtual

Definition at line 17 of file SimG4Exception.h.

17 {}

Member Function Documentation

virtual const char* SimG4Exception::what ( ) const
throw (
)
inlinevirtual

Definition at line 18 of file SimG4Exception.h.

References error_.

Referenced by OscarProducer::produce(), and OscarMTProducer::produce().

18 { 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().