00001 #include "DetectorDescription/Base/interface/DDException.h" 00002 00003 // "regular" constructor 00004 DDException::DDException(const std::string & s) : cms::Exception("DetectorDescriptionFault", s) { } 00005 00006 // default 00007 DDException::DDException() : cms::Exception("DetectorDescriptionFault") { } 00008 00009 // copy constructor 00010 DDException::DDException(const DDException& e) : cms::Exception(e) { } 00011 00012 DDException::~DDException() throw() { } 00013