/* * MathException.cpp * * Created on: Apr 30, 2010 * Author: crueger */ #include "MathException.hpp" MathException::MathException(std::string file, int line) : CustomException(file,line) {} MathException::~MathException() throw () {}