Xerces-C++ 3.3.0
|
Encapsulate a general SAX error or warning. More...
#include <xercesc/sax/SAXException.hpp>
Public Member Functions | |
Constructors and Destructor | |
SAXException (MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) | |
Default constructor. | |
SAXException (const XMLCh *const msg, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) | |
Create a new SAXException. | |
SAXException (const char *const msg, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) | |
Create a new SAXException. | |
SAXException (const SAXException &toCopy) | |
Copy constructor. | |
virtual | ~SAXException () |
Destructor. | |
Public Operators | |
SAXException & | operator= (const SAXException &toCopy) |
Assignment operator. | |
Public Member Functions inherited from XMemory | |
void * | operator new (size_t size) |
This method overrides operator new. | |
void * | operator new (size_t size, MemoryManager *memMgr) |
This method defines a custom operator new, that will use the provided memory manager to perform the allocation. | |
void * | operator new (size_t size, void *ptr) |
This method overrides placement operator new. | |
void | operator delete (void *p) |
This method overrides operator delete. | |
void | operator delete (void *p, MemoryManager *memMgr) |
This method provides a matching delete for the custom operator new. | |
void | operator delete (void *p, void *ptr) |
This method provides a matching delete for the placement new. | |
Getter Methods | |
XMLCh * | fMsg |
MemoryManager * | fMemoryManager |
virtual const XMLCh * | getMessage () const |
Get the contents of the message. | |
Additional Inherited Members | |
Protected Member Functions inherited from XMemory | |
XMemory () | |
Protected default constructor. | |
Encapsulate a general SAX error or warning.
This class can contain basic error or warning information from either the XML SAX parser or the application: a parser writer or application writer can subclass it to provide additional functionality. SAX handlers may throw this exception or any exception subclassed from it.
If the application needs to pass through other types of exceptions, it must wrap those exceptions in a SAXException or an exception derived from a SAXException.
If the parser or application needs to include information about a specific location in an XML document, it should use the SAXParseException subclass.
SAXException::SAXException | ( | MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | ) |
Default constructor.
manager | Pointer to the memory manager to be used to allocate objects. |
SAXException::SAXException | ( | const XMLCh *const | msg, |
MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager ) |
Create a new SAXException.
msg | The error or warning message. |
manager | Pointer to the memory manager to be used to allocate objects. |
SAXException::SAXException | ( | const char *const | msg, |
MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager ) |
Create a new SAXException.
msg | The error or warning message. |
manager | Pointer to the memory manager to be used to allocate objects. |
SAXException::SAXException | ( | const SAXException & | toCopy | ) |
Copy constructor.
toCopy | The exception to be copy constructed |
|
virtual |
Destructor.
|
virtual |
Get the contents of the message.
SAXException & SAXException::operator= | ( | const SAXException & | toCopy | ) |
Assignment operator.
toCopy | The object to be copied |
References fMemoryManager, fMsg, and XMLString::replicate().
|
protected |
Referenced by operator=().
|
protected |
Referenced by operator=().