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