00001 #include "RecoParticleFlow/PFClusterTools/interface/PFToolsException.h" 00002 00003 00004 using namespace pftools; 00005 00006 PFToolsException::PFToolsException(const std::string& aErrorDescription) 00007 { 00008 myDescription = aErrorDescription; 00009 } 00010 00011 PFToolsException::~PFToolsException() throw() 00012 { 00013 } 00014 00015 const char* PFToolsException::what() const throw(){ 00016 return myDescription.c_str(); 00017 }