source: molecuilder/src/Exceptions/MathException.hpp@ aab470

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

Added more Exceptions to the project to signal differen Math erorrs

  • Property mode set to 100644
File size: 355 bytes
Line 
1/*
2 * MathException.hpp
3 *
4 * Created on: Apr 30, 2010
5 * Author: crueger
6 */
7
8#ifndef MATHEXCEPTION_HPP_
9#define MATHEXCEPTION_HPP_
10
11#include "Exceptions/CustomException.hpp"
12
13class MathException : public CustomException
14{
15public:
16 MathException(std::string file, int line);
17 virtual ~MathException() throw();
18};
19
20#endif /* MATHEXCEPTION_HPP_ */
Note: See TracBrowser for help on using the repository browser.