#include <it_bus/fault_exception.h>
Inheritance diagram for IT_Bus::FaultException:
This is a fault that can occur during an operation call. These are faults that are not defined in the WSDL contract and can happen for many types of reasons. The FaultException class contains a lot of state indicating what has happened. Users should catch FaultException in their client code and can take different actions depending on the category of their fault. Users can throw the FaultException in their Service/Servant implementation code.
Definition at line 337 of file fault_exception.h.
Public Member Functions | |
FaultException () | |
Constructor. | |
FaultException (const FaultException ©) | |
Copy Constructor. | |
virtual | ~FaultException () |
Destructor. | |
virtual Exception * | clone () const |
Clone the exception onto the heap. | |
virtual void | rethrow () const |
Rethrow the exception. | |
virtual void | read_contents (ComplexTypeReader &reader) throw ((DeserializationException)) |
Read the member values into the instance. | |
virtual void | write_contents (ComplexTypeWriter &writer) const throw ((SerializationException)) |
Write the member values of the instance. | |
virtual const QName & | get_type () const |
Returns the IT_Bus::QName for the type. | |
virtual AnyType & | copy (const AnyType &assign) |
Returns a reference to an AnyType that is a copy of the AnyType parameter. | |
const FaultCategory & | get_category () const |
Get the category of the fault. | |
FaultCategory & | get_category () |
Get the category of the fault. | |
void | set_category (const FaultCategory &val) |
Set the category of the fault. | |
const String & | get_namespace_uri () const |
Get the namespace of the originator of the fault. | |
String & | get_namespace_uri () |
Get the namespace of the originator of the fault. | |
void | set_namespace_uri (const String &val) |
Set the namespace of the originator of the fault. | |
const FaultSource & | get_source () const |
Get the source of the Fault. | |
FaultSource & | get_source () |
Get the source of the Fault Values could be CLIENT, SERVER or UNKNOWN. | |
void | set_source (const FaultSource &val) |
Set the source of the Fault Values could be CLIENT, SERVER or UNKNOWN. | |
const FaultCompletionStatus & | get_completion_status () const |
Get the completion status of operation when fault was raised. | |
FaultCompletionStatus & | get_completion_status () |
Get the completion status of operation when fault was raised. | |
void | set_completion_status (const FaultCompletionStatus &val) |
Set the completion status of operation when fault was raised. | |
const String & | get_description () const |
Get the human readable description of the fault. | |
String & | get_description () |
Get the human readable description of the fault. | |
void | set_description (const String &val) |
Set the human readable description of the fault. |
|
Returns a reference to an AnyType that is a copy of the AnyType parameter. Derived classes override this method, providing an appropriate implementation. In this base class, this method is not supported; an exception is always thrown.
Reimplemented from IT_Bus::AnyType. |
|
Get the category of the fault.
|
|
Get the category of the fault.
|
|
Get the completion status of operation when fault was raised. Values can be YES, NO or MAYBE
|
|
Get the completion status of operation when fault was raised. Values can be YES, NO or MAYBE
|
|
Get the human readable description of the fault.
|
|
Get the human readable description of the fault.
|
|
Get the namespace of the originator of the fault.
|
|
Get the namespace of the originator of the fault.
|
|
Get the source of the Fault Values could be CLIENT, SERVER or UNKNOWN.
|
|
Get the source of the Fault. Values could be CLIENT, SERVER or UNKNOWN
|
|
Returns the IT_Bus::QName for the type. Derived subclasses implement this method and return their QName.
Implements IT_Bus::AnyType. |
|
Read the member values into the instance. Derived subclasses implement this method. Implements IT_Bus::SequenceComplexType. |
|
Set the category of the fault.
|
|
Set the completion status of operation when fault was raised. Values can be YES, NO or MAYBE
|
|
Set the human readable description of the fault.
|
|
Set the namespace of the originator of the fault.
|
|
Set the source of the Fault Values could be CLIENT, SERVER or UNKNOWN.
|
|
Write the member values of the instance. Derived subclasses implement this method. Implements IT_Bus::SequenceComplexType. |