soapdust
Class FaultResponseException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by soapdust.FaultResponseException
All Implemented Interfaces:
java.io.Serializable

public class FaultResponseException
extends java.lang.Exception

Thrown when the remote server returns a soap fault.

See Also:
Serialized Form

Field Summary
 ComposedValue fault
          The fault returned by the remote server.
 int responseCode
          The http status code.
 
Constructor Summary
FaultResponseException(java.lang.String message, ComposedValue fault, int responseCode)
           
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

fault

public ComposedValue fault
The fault returned by the remote server.


responseCode

public int responseCode
The http status code. Generally 500 in this case.

Constructor Detail

FaultResponseException

public FaultResponseException(java.lang.String message,
                              ComposedValue fault,
                              int responseCode)