OPAL (Object Oriented Parallel Accelerator Library)  2.2.0
OPAL
NormalFormError.h
Go to the documentation of this file.
1 #ifndef CLASSIC_NormalFormError_HH
2 #define CLASSIC_NormalFormError_HH
3 
4 // ------------------------------------------------------------------------
5 // $RCSfile: NormalFormError.h,v $
6 // ------------------------------------------------------------------------
7 // $Revision: 1.1.1.1 $
8 // ------------------------------------------------------------------------
9 // Copyright: see Copyright.readme
10 // ------------------------------------------------------------------------
11 //
12 // Class: NormalFormError
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 NormalFormError
28 // ------------------------------------------------------------------------
30 // This exception is thrown, when a normal form routine fails to find the
31 // complete normal form, or when it detects an inconsistent call.
32 
34 
35 public:
36 
38  // Arguments:
39  // [DL]
40  // [DT][b]meth[/b]
41  // [DD]the name of the method or function detecting the exception
42  // [DT][b]msg [/b]
43  // [DD]the message string identifying the exception
44  // [/DL]
45  NormalFormError(const std::string &meth, const std::string &msg);
46 
48  virtual ~NormalFormError();
49 
50 private:
51 
52  // Not implemented.
54 };
55 
56 #endif // CLASSIC_NormalFormError_HH
The abstract base class for all CLASSIC arithmetic exceptions.
Normal form error exception.
virtual ~NormalFormError()