mailiverse/gwt/jre/java/net/UnknownServiceException.java

22 lines
399 B
Java

package java.net;
import java.io.IOException;
public class UnknownServiceException extends IOException {
public UnknownServiceException() {
// TODO Auto-generated constructor stub
}
public UnknownServiceException(String s) {
super(s);
// TODO Auto-generated constructor stub
}
public UnknownServiceException(Exception e) {
super(e);
// TODO Auto-generated constructor stub
}
}