00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067 #ifndef DOM_RangeException_HEADER_GUARD_
00068 #define DOM_RangeException_HEADER_GUARD_
00069
00070 #include <xercesc/dom/DOM_DOMException.hpp>
00071
00087 class DOM_RangeException : public DOM_DOMException {
00088 public:
00091 enum RangeExceptionCode {
00092 BAD_BOUNDARYPOINTS_ERR = 1,
00093 INVALID_NODE_TYPE_ERR = 2
00094 };
00096 public:
00099
00103 DOM_RangeException();
00104
00111 DOM_RangeException(RangeExceptionCode code, const DOMString &message);
00112
00118 DOM_RangeException(const DOM_RangeException &other);
00119
00121
00123
00129 virtual ~DOM_RangeException();
00131
00134
00138 RangeExceptionCode code;
00139
00141
00142 };
00143
00144 #endif
00145