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

io.polaris.core.err.IORuntimeException Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy