/* * NotOnSurfaceException.cpp * * Created on: Jul 14, 2010 * Author: crueger */ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "Helpers/MemDebug.hpp" #include "NotOnSurfaceException.hpp" using namespace std; NotOnSurfaceException::NotOnSurfaceException(string _file, int _line) : ShapeException(_file,_line) {} NotOnSurfaceException::~NotOnSurfaceException() throw () {} const char* NotOnSurfaceException::what() const throw(){ return "Given point did not lie on surface of Shape"; }