public abstract class

SoapFaultException

extends RemoteInvocationFailureException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ org.springframework.core.NestedRuntimeException
           ↳ org.springframework.remoting.RemoteAccessException
             ↳ org.springframework.remoting.RemoteInvocationFailureException
               ↳ org.springframework.remoting.soap.SoapFaultException
Known Direct Subclasses

Class Overview

RemoteInvocationFailureException subclass that provides the details of a SOAP fault.

See Also
  • javax.xml.rpc.soap.SOAPFaultException
  • javax.xml.ws.soap.SOAPFaultException

Summary

Protected Constructors
SoapFaultException(String msg, Throwable cause)
Constructor for SoapFaultException.
Public Methods
abstract String getFaultActor()
Return the actor that caused this fault.
abstract String getFaultCode()
Return the SOAP fault code.
abstract QName getFaultCodeAsQName()
Return the SOAP fault code as a QName object.
abstract String getFaultString()
Return the descriptive SOAP fault string.
[Expand]
Inherited Methods
From class org.springframework.core.NestedRuntimeException
From class java.lang.Throwable
From class java.lang.Object

Protected Constructors

protected SoapFaultException (String msg, Throwable cause)

Constructor for SoapFaultException.

Parameters
msg the detail message
cause the root cause from the SOAP API in use

Public Methods

public abstract String getFaultActor ()

Return the actor that caused this fault.

public abstract String getFaultCode ()

Return the SOAP fault code.

public abstract QName getFaultCodeAsQName ()

Return the SOAP fault code as a QName object.

public abstract String getFaultString ()

Return the descriptive SOAP fault string.