/* * NotOnSurfaceException.cpp * * Created on: Jul 14, 2010 * Author: crueger */ #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"; }