00001 #include "MapsException.hh" 00002 00003 MapsException::MapsException(const std::string& aErrorDescription) 00004 { 00005 myDescription = aErrorDescription; 00006 } 00007 00008 00009 const char* MapsException::what() const throw(){ 00010 return myDescription.c_str(); 00011 }