All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jsoup.UncheckedIOException Maven / Gradle / Ivy

Go to download

SDK for dev_appserver (local development) with some of the dependencies shaded (repackaged)

There is a newer version: 2.0.31
Show newest version
package org.jsoup;

import java.io.IOException;

/**
 * @deprecated Use {@link java.io.UncheckedIOException} instead. This class acted as a compatibility shim for Java
 * versions prior to 1.8.
 */
// todo annotate @Deprecated in next release (after previous @Deprecations clear)
public class UncheckedIOException extends java.io.UncheckedIOException {
    public UncheckedIOException(IOException cause) {
        super(cause);
    }

    public UncheckedIOException(String message) {
        super(new IOException(message));
    }

    public IOException ioException() {
        return getCause();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy