An exception for DDD errors. More...
#include <DDException.h>
Public Member Functions | |
DDException (const std::string &s) | |
constructor takes simply an error message via a std::string | |
DDException () | |
DDException (const DDException &dde) | |
std::string | message () const |
other methods just for this to work with DDException legacy... | |
~DDException () throw () |
An exception for DDD errors.
Provides an exception for DDD errors.
Modifications: MEC: 8 June 2005 Michael Case: changed to inherit from seal::Error MEC: 25 April 2007 Michael Case: changed to inherit from cms:Exception
Definition at line 23 of file DDException.h.
DDException::DDException | ( | const std::string & | s | ) | [explicit] |
constructor takes simply an error message via a std::string
Definition at line 4 of file DDException.cc.
: cms::Exception("DetectorDescriptionFault", s) { }
DDException::DDException | ( | ) |
Definition at line 7 of file DDException.cc.
: cms::Exception("DetectorDescriptionFault") { }
DDException::DDException | ( | const DDException & | dde | ) |
Definition at line 10 of file DDException.cc.
: cms::Exception(e) { }
DDException::~DDException | ( | ) | throw () |
Definition at line 12 of file DDException.cc.
{ }
std::string DDException::message | ( | ) | const |
other methods just for this to work with DDException legacy...