- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.xml.ws.WebServiceException
-
- javax.xml.ws.ProtocolException
-
- javax.xml.ws.soap.SOAPFaultException
-
- All Implemented Interfaces:
-
Serializable
public class SOAPFaultException extends ProtocolException
SOAPFaultException
异常表示SOAP 1.1或1.2故障。A
SOAPFaultException
包装一个SAAJSOAPFault
,用于管理特定于SOAP的SOAP故障表示。 可以使用javax.xml.soap.SOAPFactory
的createFault
方法来创建一个javax.xml.soap.SOAPFault
用于构造函数的实例。SOAPBinding
包含绑定实例使用的SOAPFactory
的访问器。请注意,
getFault
的值是getFault
SOAP故障时所使用的异常的唯一部分。有关SOAP故障的完整描述,请参阅SOAP规范。
- 从以下版本开始:
- 1.6,JAX-WS 2.0
- 另请参见:
-
SOAPFault
,SOAPBinding.getSOAPFactory()
,ProtocolException
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 SOAPFaultException(SOAPFault fault)
SOAPFaultException的构造方法
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 SOAPFault
getFault()
获取嵌入式SOAPFault
实例。-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
SOAPFaultException
public SOAPFaultException(SOAPFault fault)
SOAPFaultException的构造方法- 参数
-
fault
-SOAPFault
表示故障 - 另请参见:
-
SOAPFactory.createFault(java.lang.String, javax.xml.namespace.QName)
-
-
方法详细信息
-
getFault
public SOAPFault getFault()
获取嵌入式的SOAPFault
实例。- 结果
-
javax.xml.soap.SOAPFault
SOAP故障元素
-
-