OPALX (Object Oriented Parallel Accelerator Library for Exascal) master (dc2a29eed580)
OPALX
Loading...
Searching...
No Matches
FormatError.h
Go to the documentation of this file.
1#ifndef OPAL_FormatError_HH
2#define OPAL_FormatError_HH
3
4// ------------------------------------------------------------------------
5// $RCSfile: FormatError.h,v $
6// ------------------------------------------------------------------------
7// $Revision: 1.1.1.1 $
8// ------------------------------------------------------------------------
9// Copyright: see Copyright.readme
10// ------------------------------------------------------------------------
11//
12// Class: FormatError
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 FormatError
28// ------------------------------------------------------------------------
30// This exception is thrown, when an input routine detects a format error.
31
32class FormatError : public OpalException {
33public:
35 // Arguments:
36 // [DL]
37 // [DT][b]meth[/b]
38 // [DD]the name of the method or function detecting the exception
39 // [DT][b]msg [/b]
40 // [DD]the message string identifying the exception
41 // [/DL]
42 FormatError(const std::string& meth, const std::string& msg);
43
45 virtual ~FormatError();
46
47private:
48 // Not implemented.
50};
51
52#endif // OPAL_FormatError_HH
Format error exception.
Definition FormatError.h:32
virtual ~FormatError()