spring-web

org.springframework.remoting.jaxrpc
Class JaxRpcSoapFaultException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.springframework.core.NestedRuntimeException
                  extended by org.springframework.remoting.RemoteAccessException
                      extended by org.springframework.remoting.RemoteInvocationFailureException
                          extended by org.springframework.remoting.soap.SoapFaultException
                              extended by org.springframework.remoting.jaxrpc.JaxRpcSoapFaultException
All Implemented Interfaces:
java.io.Serializable

Deprecated. in favor of JAX-WS support in org.springframework.remoting.jaxws

@Deprecated
public class JaxRpcSoapFaultException
extends org.springframework.remoting.soap.SoapFaultException

Spring SoapFaultException adapter for the JAX-RPC SOAPFaultException class.

Since:
2.5
Author:
Juergen Hoeller
See Also:
Serialized Form

Constructor Summary
JaxRpcSoapFaultException(javax.xml.rpc.soap.SOAPFaultException original)
          Deprecated. Constructor for JaxRpcSoapFaultException.
 
Method Summary
 java.lang.String getFaultActor()
          Deprecated.  
 java.lang.String getFaultCode()
          Deprecated.  
 javax.xml.namespace.QName getFaultCodeAsQName()
          Deprecated.  
 java.lang.String getFaultString()
          Deprecated.  
 javax.xml.rpc.soap.SOAPFaultException getOriginalException()
          Deprecated. Return the wrapped JAX-RPC SOAPFaultException.
 
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMessage, getMostSpecificCause, getRootCause
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

JaxRpcSoapFaultException

public JaxRpcSoapFaultException(javax.xml.rpc.soap.SOAPFaultException original)
Deprecated. 
Constructor for JaxRpcSoapFaultException.

Parameters:
original - the original JAX-RPC SOAPFaultException to wrap
Method Detail

getOriginalException

public final javax.xml.rpc.soap.SOAPFaultException getOriginalException()
Deprecated. 
Return the wrapped JAX-RPC SOAPFaultException.


getFaultCode

public java.lang.String getFaultCode()
Deprecated. 
Specified by:
getFaultCode in class org.springframework.remoting.soap.SoapFaultException

getFaultCodeAsQName

public javax.xml.namespace.QName getFaultCodeAsQName()
Deprecated. 
Specified by:
getFaultCodeAsQName in class org.springframework.remoting.soap.SoapFaultException

getFaultString

public java.lang.String getFaultString()
Deprecated. 
Specified by:
getFaultString in class org.springframework.remoting.soap.SoapFaultException

getFaultActor

public java.lang.String getFaultActor()
Deprecated. 
Specified by:
getFaultActor in class org.springframework.remoting.soap.SoapFaultException

spring-web