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
00068
00069
00070
00071
00072
00073
00074 #ifndef SAXEXCEPTION_HPP
00075 #define SAXEXCEPTION_HPP
00076
00077 #include <xercesc/util/XMLString.hpp>
00078 #include <xercesc/util/XMLUni.hpp>
00079 #include <xercesc/util/XMemory.hpp>
00080
00081 XERCES_CPP_NAMESPACE_BEGIN
00082
00083
00103 class SAXException : public XMemory
00104 {
00105 public:
00112 SAXException(MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager) :
00113
00114 fMsg(XMLString::replicate(XMLUni::fgZeroLenString, manager))
00115 , fMemoryManager(manager)
00116 {
00117 }
00118
00126 SAXException(const XMLCh* const msg,
00127 MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager) :
00128
00129 fMsg(XMLString::replicate(msg, manager))
00130 , fMemoryManager(manager)
00131 {
00132 }
00133
00141 SAXException(const char* const msg,
00142 MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager) :
00143
00144 fMsg(XMLString::transcode(msg, manager))
00145 , fMemoryManager(manager)
00146 {
00147 }
00148
00154 SAXException(const SAXException& toCopy) :
00155
00156 fMsg(XMLString::replicate(toCopy.fMsg, toCopy.fMemoryManager))
00157 , fMemoryManager(toCopy.fMemoryManager)
00158 {
00159 }
00160
00162 virtual ~SAXException()
00163 {
00164 fMemoryManager->deallocate(fMsg);
00165 }
00166
00168
00169
00177 SAXException& operator=(const SAXException& toCopy)
00178 {
00179 if (this == &toCopy)
00180 return *this;
00181
00182 fMemoryManager->deallocate(fMsg);
00183 fMsg = XMLString::replicate(toCopy.fMsg, toCopy.fMemoryManager);
00184 fMemoryManager = toCopy.fMemoryManager;
00185 return *this;
00186 }
00188
00195 virtual const XMLCh* getMessage() const
00196 {
00197 return fMsg;
00198 }
00200
00201
00202 protected :
00203
00204
00205
00206
00207
00208
00209 XMLCh* fMsg;
00210 MemoryManager* fMemoryManager;
00211 };
00212
00213 class SAXNotSupportedException : public SAXException
00214 {
00215
00216 public:
00217 SAXNotSupportedException(MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
00218
00226 SAXNotSupportedException(const XMLCh* const msg,
00227 MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
00228
00236 SAXNotSupportedException(const char* const msg,
00237 MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
00238
00244 SAXNotSupportedException(const SAXException& toCopy);
00245 };
00246
00247 class SAXNotRecognizedException : public SAXException
00248 {
00249 public:
00250 SAXNotRecognizedException(MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
00251
00259 SAXNotRecognizedException(const XMLCh* const msg,
00260 MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
00261
00269 SAXNotRecognizedException(const char* const msg,
00270 MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
00271
00277 SAXNotRecognizedException(const SAXException& toCopy);
00278 };
00279
00280 XERCES_CPP_NAMESPACE_END
00281
00282 #endif