/* * ShapeException.hpp * * Created on: Jul 14, 2010 * Author: crueger */ #ifndef SHAPEEXCEPTION_HPP_ #define SHAPEEXCEPTION_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "Exceptions/CustomException.hpp" class ShapeException : public CustomException { public: ShapeException(std::string file, int line); virtual ~ShapeException() throw(); }; #endif /* SHAPEEXCEPTION_HPP_ */