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