source: molecuilder/src/Exceptions/MathException.cpp@ 25e17e9

Last change on this file since 25e17e9 was 7a8319, checked in by Tillmann Crueger <crueger@…>, 15 years ago

Added more Exceptions to the project to signal differen Math erorrs

  • Property mode set to 100644
File size: 251 bytes
Line 
1/*
2 * MathException.cpp
3 *
4 * Created on: Apr 30, 2010
5 * Author: crueger
6 */
7
8#include "MathException.hpp"
9
10MathException::MathException(std::string file, int line) :
11 CustomException(file,line)
12{}
13
14MathException::~MathException() throw ()
15{}
Note: See TracBrowser for help on using the repository browser.