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