com.fastchar.security.exception.FastSecurityException Maven / Gradle / Ivy
package com.fastchar.security.exception;
public class FastSecurityException extends RuntimeException {
private static final long serialVersionUID = -8608274243087991509L;
public FastSecurityException() {
}
public FastSecurityException(String message) {
super(message);
}
public FastSecurityException(String message, Throwable cause) {
super(message, cause);
}
public FastSecurityException(Throwable cause) {
super(cause);
}
public FastSecurityException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}