/* * SkewException.cpp * * Created on: May 27, 2010 * Author: crueger */ #include "Helpers/MemDebug.hpp" #include "SkewException.hpp" using namespace std; SkewException::SkewException(string _file, int _line) : MathException(_file,_line) {} SkewException::~SkewException() throw() {} const char* SkewException::what() const throw() { return "Given lines were askew."; }