/* * ZeroVectorException.cpp * * Created on: Apr 30, 2010 * Author: crueger */ #include "Helpers/MemDebug.hpp" #include "ZeroVectorException.hpp" ZeroVectorException::ZeroVectorException(std::string file, int line) : MathException(file,line) {} ZeroVectorException::~ZeroVectorException() throw () {} const char* ZeroVectorException::what() const throw() { return "Given vector was a zero Vector."; }