source: molecuilder/src/Exceptions/LinearDependenceException.cpp@ 71910a

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

Made data internal data-structure of vector class private

  • Replaced occurences of access to internals with operator
  • moved Vector-class into LinAlg-Module
  • Reworked Vector to allow clean modularization
  • Added Plane class to describe arbitrary planes in 3d space
  • Property mode set to 100644
File size: 456 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 CustomException(_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.