source: molecuilder/src/Exceptions/LinearDependenceException.cpp@ 7a8319

Last change on this file since 7a8319 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: 454 bytes
Line 
1/*
2 * LinearDependenceException.cpp
3 *
4 * Created on: Apr 7, 2010
5 * Author: crueger
6 */
7
8#include "LinearDependenceException.hpp"
9
10using namespace std;
11
12LinearDependenceException::LinearDependenceException(string _file, int _line) :
13 MathException(_file,_line)
14{}
15
16LinearDependenceException::~LinearDependenceException() throw ()
17{}
18
19const char* LinearDependenceException::what() const throw()
20{
21 return "Given vectors are linear dependent.";
22}
Note: See TracBrowser for help on using the repository browser.