io.github.hylexus.jt.exception.AbstractJtException Maven / Gradle / Ivy
The newest version!
package io.github.hylexus.jt.exception;
/**
* @author hylexus
*/
public abstract class AbstractJtException extends RuntimeException {
public AbstractJtException() {
}
public AbstractJtException(String message) {
super(message);
}
public AbstractJtException(String message, Throwable cause) {
super(message, cause);
}
public AbstractJtException(Throwable cause) {
super(cause);
}
public AbstractJtException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy