1 |
|
2 |
/* $Id$ */ |
3 |
|
4 |
/******************************************************* |
5 |
* |
6 |
* Copyright 2003-2007 by ACceSS MNRF |
7 |
* Copyright 2007 by University of Queensland |
8 |
* |
9 |
* http://esscc.uq.edu.au |
10 |
* Primary Business: Queensland, Australia |
11 |
* Licensed under the Open Software License version 3.0 |
12 |
* http://www.opensource.org/licenses/osl-3.0.php |
13 |
* |
14 |
*******************************************************/ |
15 |
|
16 |
#if !defined escript_DataException_20040324_H |
17 |
#define escript_DataException_20040324_H |
18 |
#include "system_dep.h" |
19 |
|
20 |
#include "esysUtils/EsysException.h" |
21 |
|
22 |
namespace escript |
23 |
{ |
24 |
|
25 |
/** |
26 |
\brief |
27 |
DataException exception class. |
28 |
|
29 |
Description: |
30 |
DataException exception class. |
31 |
The class provides a public function returning the exception name |
32 |
*/ |
33 |
class DataException : public esysUtils::EsysException |
34 |
{ |
35 |
|
36 |
protected: |
37 |
|
38 |
typedef EsysException Parent; |
39 |
|
40 |
public: |
41 |
/** |
42 |
\brief |
43 |
Default constructor for the exception. |
44 |
*/ |
45 |
ESCRIPT_DLL_API |
46 |
DataException() : Parent() { updateMessage();} |
47 |
/** |
48 |
\brief |
49 |
Constructor for the exception. |
50 |
*/ |
51 |
ESCRIPT_DLL_API |
52 |
DataException(const char *cstr) : Parent(cstr) { updateMessage();} |
53 |
/** |
54 |
\brief |
55 |
Constructor for the exception. |
56 |
*/ |
57 |
ESCRIPT_DLL_API |
58 |
DataException(const std::string &str) : Parent(str) { updateMessage();} |
59 |
/** |
60 |
\brief |
61 |
Copy Constructor for the exception. |
62 |
*/ |
63 |
ESCRIPT_DLL_API |
64 |
DataException(const DataException &other) : Parent(other) |
65 |
{ |
66 |
updateMessage(); |
67 |
} |
68 |
|
69 |
ESCRIPT_DLL_API |
70 |
inline virtual DataException & |
71 |
operator=(const DataException &other ) THROW_ANY |
72 |
{ |
73 |
Parent::operator=(other); |
74 |
updateMessage(); |
75 |
return *this; |
76 |
} |
77 |
|
78 |
|
79 |
/// Destructor |
80 |
ESCRIPT_DLL_API |
81 |
virtual ~DataException() THROW_ANY {} |
82 |
|
83 |
/** |
84 |
\brief |
85 |
Returns the name of the exception. |
86 |
*/ |
87 |
ESCRIPT_DLL_API |
88 |
virtual const std::string & exceptionName() const; |
89 |
|
90 |
private: |
91 |
|
92 |
// |
93 |
// the exception name is immutable and class-wide. |
94 |
// Inheritor note; you need one of these too. |
95 |
// and an overloaded exceptionName() in your .cpp implementation file. |
96 |
static const std::string exceptionNameValue; |
97 |
|
98 |
|
99 |
}; |
100 |
|
101 |
} // end of namespace |
102 |
|
103 |
|
104 |
#endif |