source: molecuilder/src/Exceptions/LinearDependenceException.hpp@ 32842d8

Last change on this file since 32842d8 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: 486 bytes
Line 
1/*
2 * LinearDependenceException.hpp
3 *
4 * Created on: Apr 7, 2010
5 * Author: crueger
6 */
7
8#ifndef LINEARDEPENDENCEEXCEPTION_HPP_
9#define LINEARDEPENDENCEEXCEPTION_HPP_
10
11#include "Exceptions/CustomException.hpp"
12
13class LinearDependenceException : public CustomException
14{
15public:
16 LinearDependenceException(std::string _file, int _line);
17 virtual ~LinearDependenceException() throw ();
18
19 virtual const char* what() const throw();
20};
21
22#endif /* LINEARDEPENDENCEEXCEPTION_HPP_ */
Note: See TracBrowser for help on using the repository browser.