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