org.jsoup.UncheckedIOException Maven / Gradle / Ivy
Go to download
SDK for dev_appserver (local development) with some of the dependencies shaded (repackaged)
package org.jsoup;
import java.io.IOException;
public class UncheckedIOException extends RuntimeException {
public UncheckedIOException(IOException cause) {
super(cause);
}
public UncheckedIOException(String message) {
super(new IOException(message));
}
public IOException ioException() {
return (IOException) getCause();
}
}