1 5 6 package javax.xml.ws.soap; 7 8 import javax.xml.soap.SOAPFault ; 9 10 33 public class SOAPFaultException extends javax.xml.ws.ProtocolException { 34 35 private SOAPFault fault; 36 37 42 public SOAPFaultException(SOAPFault fault) { 43 super(fault.getFaultString()); 44 this.fault = fault; 45 } 46 47 52 public javax.xml.soap.SOAPFault getFault() { 53 return this.fault; 54 } 55 } 56 | Popular Tags |