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

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

There is a newer version: 3.2.1
Show newest version
package io.polaris.core.err;

/**
 * @author Qt
 * @since May 10, 2024
 */
public class CheckedException extends Exception {

	private static final long serialVersionUID = 1L;

	public CheckedException() {
	}

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy