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

com.github.ltsopensource.nio.NioException Maven / Gradle / Ivy

package com.github.ltsopensource.nio;

/**
 * @author Robert HG ([email protected]) on 1/9/16.
 */
public class NioException extends RuntimeException {

    public NioException() {
        super();
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy