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

net.dongliu.commons.lang.exception.RIOException Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version
package net.dongliu.commons.lang.exception;

import java.io.IOException;

/**
 * the runtime exception(non-checked exception) version of IOException
 *
 * @author Dong Liu
 */
public class RIOException extends RuntimeException {
    public RIOException() {
    }

    public RIOException(String message) {
        super(message);
    }

    public RIOException(String message, Throwable cause) {
        super(message, cause);
    }

    public RIOException(Throwable cause) {
        super(cause);
    }

    public RIOException(IOException e) {
        this(e.getMessage(), e);
    }

    public RIOException(String message, Throwable cause, boolean enableSuppression,
                        boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy