#include "MapsException.hh" MapsException::MapsException(const std::string& aErrorDescription) { myDescription = aErrorDescription; } const char* MapsException::what() const throw(){ return myDescription.c_str(); }