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

io.rivulet.org.jsoup.UncheckedIOException Maven / Gradle / Ivy

The newest version!
package org.jsoup;

import java.io.IOException;

public class UncheckedIOException extends RuntimeException {
    public UncheckedIOException(IOException cause) {
        super(cause);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy