java.net.UnknownServiceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-mt-jre-emulation Show documentation
Show all versions of gwt-mt-jre-emulation Show documentation
Additional jre emulation classes for gwt and j2cl.
package java.net;
import java.io.IOException;
public class UnknownServiceException extends IOException {
private static final long serialVersionUID = -4169033248853639508L;
public UnknownServiceException() {
super();
}
public UnknownServiceException(final String message) {
super(message);
}
}