1 |
jgs |
150 |
/* |
2 |
elspeth |
627 |
************************************************************ |
3 |
|
|
* Copyright 2006 by ACcESS MNRF * |
4 |
|
|
* * |
5 |
|
|
* http://www.access.edu.au * |
6 |
|
|
* Primary Business: Queensland, Australia * |
7 |
|
|
* Licensed under the Open Software License version 3.0 * |
8 |
|
|
* http://www.opensource.org/licenses/osl-3.0.php * |
9 |
|
|
* * |
10 |
|
|
************************************************************ |
11 |
jgs |
150 |
*/ |
12 |
|
|
|
13 |
|
|
#if !defined finley_BruceException_20050905_H |
14 |
|
|
#define finley_BruceException_20050905_H |
15 |
|
|
|
16 |
jgs |
468 |
#include "EsysException.h" |
17 |
jgs |
150 |
|
18 |
|
|
#include <string> |
19 |
|
|
|
20 |
|
|
namespace bruce { |
21 |
|
|
|
22 |
|
|
/** |
23 |
|
|
\brief |
24 |
|
|
Bruce exception class. |
25 |
|
|
|
26 |
|
|
Description: |
27 |
|
|
Bruce exception class. |
28 |
|
|
The class provides a public function returning the exception name. |
29 |
|
|
*/ |
30 |
|
|
|
31 |
|
|
class BruceException : public esysUtils::EsysException { |
32 |
|
|
|
33 |
|
|
public: |
34 |
|
|
|
35 |
|
|
/** |
36 |
|
|
\brief |
37 |
|
|
Default constructor for the exception. |
38 |
|
|
*/ |
39 |
|
|
BruceException() : EsysException() {} |
40 |
|
|
|
41 |
|
|
/** |
42 |
|
|
\brief |
43 |
|
|
Constructor for the exception. |
44 |
|
|
*/ |
45 |
|
|
BruceException(const char *cstr) : EsysException(cstr) {} |
46 |
|
|
|
47 |
|
|
/** |
48 |
|
|
\brief |
49 |
|
|
Constructor for the exception. |
50 |
|
|
*/ |
51 |
|
|
BruceException(const std::string &str) : EsysException(str) {} |
52 |
|
|
|
53 |
|
|
/** |
54 |
|
|
\brief |
55 |
|
|
Returns the name of the exception. |
56 |
|
|
*/ |
57 |
|
|
virtual |
58 |
|
|
std::string |
59 |
|
|
exceptionName() const {return "BruceException";} |
60 |
|
|
|
61 |
|
|
}; |
62 |
|
|
|
63 |
|
|
} // end of namespace |
64 |
|
|
|
65 |
|
|
#endif |