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

com.browserup.bup.mitm.exception.UncheckedIOException Maven / Gradle / Ivy

The newest version!
package com.browserup.bup.mitm.exception;

import java.io.IOException;

/**
 * A convenience exception that wraps checked {@link IOException}s. (The built-in java.io.UncheckedIOException is only
 * available on Java 8.)
 */
public class UncheckedIOException extends RuntimeException {
    public UncheckedIOException(String message, IOException cause) {
        super(message, cause);
    }

    public UncheckedIOException(IOException cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy