001package org.jsoup;
002
003import java.io.IOException;
004
005public class UncheckedIOException extends Error {
006    public UncheckedIOException(IOException cause) {
007        super(cause);
008    }
009
010    public IOException ioException() {
011        return (IOException) getCause();
012    }
013}