#include <Exception.h>
Inheritance diagram for ACEXML_Exception:
Public Methods | |
ACEXML_Exception (const ACEXML_Exception &src) | |
Copy constructor. | |
ACEXML_Exception & | operator= (const ACEXML_Exception &src) |
Assignment operator. | |
virtual | ~ACEXML_Exception (void) |
Destructor. | |
virtual void | _raise (void)=0 |
Throw the exception. | |
virtual const ACEXML_Char * | id (void) const |
Return the exception type. (for safe downcast.). | |
virtual ACEXML_Exception * | duplicate (void) const=0 |
Dynamically create a copy of this exception. | |
virtual int | is_a (const ACEXML_Char *name)=0 |
Check whether this is an exception of type specified by <name>. | |
virtual void | print (void)=0 |
Print out exception using ACE_DEBUG. | |
Static Public Methods | |
ACEXML_Exception * | _downcast (ACEXML_Exception *ex) |
Static narrow operation. | |
Protected Methods | |
ACEXML_Exception (void) | |
Default contructor. | |
Static Protected Attributes | |
const ACEXML_Char * | exception_name_ = ACEXML_Exception_name |
const ACEXML_Char * | null_ = ACEXML_Exception_null |
A null string that we return when there is no exception. |
ACEXML_Exception is the base class for all ACEXML related exceptions. Since ACEXML currently does not support native exceptions, all exceptions should be thrown thru ACEXML_Env.
|
Copy constructor.
|
|
Destructor.
|
|
Default contructor.
|
|
Static narrow operation.
Reimplemented in ACEXML_SAXException, ACEXML_SAXNotSupportedException, ACEXML_SAXNotRecognizedException, and ACEXML_SAXParseException. |
|
Throw the exception.
Implemented in ACEXML_SAXException, ACEXML_SAXNotSupportedException, ACEXML_SAXNotRecognizedException, and ACEXML_SAXParseException. |
|
Dynamically create a copy of this exception.
Implemented in ACEXML_SAXException, ACEXML_SAXNotSupportedException, ACEXML_SAXNotRecognizedException, and ACEXML_SAXParseException. |
|
Return the exception type. (for safe downcast.).
Reimplemented in ACEXML_SAXException, ACEXML_SAXNotSupportedException, ACEXML_SAXNotRecognizedException, and ACEXML_SAXParseException. |
|
Check whether this is an exception of type specified by <name>.
Implemented in ACEXML_SAXException, ACEXML_SAXNotSupportedException, ACEXML_SAXNotRecognizedException, and ACEXML_SAXParseException. |
|
Assignment operator.
|
|
Print out exception using ACE_DEBUG.
Implemented in ACEXML_SAXException, ACEXML_SAXNotSupportedException, ACEXML_SAXNotRecognizedException, and ACEXML_SAXParseException. |
|
All exceptions have names. This name is used to identify the type of an exception. Reimplemented in ACEXML_SAXException, ACEXML_SAXNotSupportedException, ACEXML_SAXNotRecognizedException, and ACEXML_SAXParseException. |
|
A null string that we return when there is no exception.
|