io.polaris.core.err.IORuntimeException Maven / Gradle / Ivy
package io.polaris.core.err;
/**
* @author Qt
* @since 1.8, Jan 19, 2024
*/
@SuppressWarnings("ALL")
public class IORuntimeException extends RuntimeException {
private static final long serialVersionUID = 1L;
public IORuntimeException() {
super();
}
public IORuntimeException(String message) {
super(message);
}
public IORuntimeException(String message, Throwable cause) {
super(message, cause);
}
public IORuntimeException(Throwable cause) {
super(cause);
}
protected IORuntimeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}