1 4 5 9 10 package org.openlaszlo.remote.soap; 11 12 public class WSDLException extends Exception { 13 14 public WSDLException() 15 { 16 super(); 17 } 18 19 public WSDLException(String message) 20 { 21 super(message); 22 } 23 24 public WSDLException(String message, Throwable cause) 25 { 26 super(message, cause); 27 } 28 29 public WSDLException(Throwable cause) 30 { 31 super(cause); 32 } 33 } 34 | Popular Tags |