/* * ShapeException.cpp * * Created on: Jul 14, 2010 * Author: crueger */ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "Helpers/MemDebug.hpp" #include "ShapeException.hpp" ShapeException::ShapeException(std::string file, int line) : CustomException(file,line) {} ShapeException::~ShapeException() throw () {}