#include <DOMXPathException.hpp>
Public Types | |
enum | ExceptionCode { INVALID_EXPRESSION_ERR = 51, TYPE_ERR = 52, NO_RESULT_ERROR = 53 } |
ExceptionCode | |
Public Member Functions | |
Constructors | |
DOMXPathException () | |
Default constructor for DOMXPathException. | |
DOMXPathException (short code, short messageCode=0, MemoryManager *const memoryManager=XMLPlatformUtils::fgMemoryManager) | |
Constructor which takes an error code and a message. | |
DOMXPathException (const DOMXPathException &other) | |
Copy constructor. | |
Destructor. | |
virtual | ~DOMXPathException () |
Destructor for DOMXPathException. |
ExceptionCode
INVALID_EXPRESSION_ERR The expression has a syntax error or otherwise is not a legal expression according to the rules of the specific DOMXPathEvaluator
or contains specialized extension functions or variables not supported by this implementation.
TYPE_ERR The expression cannot be converted to return the specified type.
NO_RESULT_ERROR There is no current result in the result object.
Reimplemented from xercesc::DOMException.
xercesc::DOMXPathException::DOMXPathException | ( | ) |
Default constructor for DOMXPathException.
xercesc::DOMXPathException::DOMXPathException | ( | short | code, | |
short | messageCode = 0 , |
|||
MemoryManager *const | memoryManager = XMLPlatformUtils::fgMemoryManager | |||
) |
Constructor which takes an error code and a message.
code | The error code which indicates the exception | |
messageCode | The string containing the error message | |
memoryManager | The memory manager used to (de)allocate memory |
xercesc::DOMXPathException::DOMXPathException | ( | const DOMXPathException & | other | ) |
Copy constructor.
other | The object to be copied. |
xercesc::DOMXPathException::~DOMXPathException | ( | ) | [virtual] |
Destructor for DOMXPathException.