/* * LinearDependenceException.cpp * * Created on: Apr 7, 2010 * Author: crueger */ #include "LinearDependenceException.hpp" using namespace std; LinearDependenceException::LinearDependenceException(string _file, int _line) : MathException(_file,_line) {} LinearDependenceException::~LinearDependenceException() throw () {} const char* LinearDependenceException::what() const throw() { return "Given vectors are linear dependent."; }