OPAL (Object Oriented Parallel Accelerator Library) 2022.1
OPAL
SingularMatrixError.h
Go to the documentation of this file.
1#ifndef CLASSIC_SingularMatrixError_HH
2#define CLASSIC_SingularMatrixError_HH
3
4// ------------------------------------------------------------------------
5// $RCSfile: SingularMatrixError.h,v $
6// ------------------------------------------------------------------------
7// $Revision: 1.1.1.1 $
8// ------------------------------------------------------------------------
9// Copyright: see Copyright.readme
10// ------------------------------------------------------------------------
11//
12// Class: SingularMatrixError
13//
14// ------------------------------------------------------------------------
15// Class category: Utilities
16// ------------------------------------------------------------------------
17//
18// $Date: 2000/03/27 09:32:38 $
19// $Author: fci $
20//
21// ------------------------------------------------------------------------
22
24
25#include <string>
26
27// Class SingularMatrixError
28// ------------------------------------------------------------------------
30// This exception is thrown, when an attempt is made to invert a singular
31// matrix.
32
34
35public:
36
38 // Arguments:
39 // [DL]
40 // [DT][b]meth[/b]
41 // [DD]the name of the method or function detecting the exception
42 // [/DL]
43 // Construction/destruction.
44 explicit SingularMatrixError(const std::string &meth);
45
47 virtual ~SingularMatrixError();
48
49private:
50
51 // Not implemented.
53};
54
55#endif // CLASSIC_SingularMatrixError_HH
The abstract base class for all CLASSIC arithmetic exceptions.
Singular matrix exception.