/* * LinearDependenceException.hpp * * Created on: Apr 7, 2010 * Author: crueger */ #ifndef LINEARDEPENDENCEEXCEPTION_HPP_ #define LINEARDEPENDENCEEXCEPTION_HPP_ #include "Exceptions/MathException.hpp" class LinearDependenceException : public MathException { public: LinearDependenceException(std::string _file, int _line); virtual ~LinearDependenceException() throw (); virtual const char* what() const throw(); }; #endif /* LINEARDEPENDENCEEXCEPTION_HPP_ */