1 5 6 package javax.xml.ws; 7 8 15 public class ProtocolException extends WebServiceException { 16 21 public ProtocolException() { 22 super(); 23 } 24 25 33 public ProtocolException(String message) { 34 super(message); 35 } 36 37 50 public ProtocolException(String message, Throwable cause) { 51 super(message, cause); 52 } 53 54 65 public ProtocolException(Throwable cause) { 66 super(cause); 67 } 68 } 69 | Popular Tags |