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);
}
}