cn.ocoop.framework.safe.ex.authc.AuthenticatingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of safe-spring-boot-starter Show documentation
Show all versions of safe-spring-boot-starter Show documentation
simple and easy use security framework to protect your spring boot web-application.
package cn.ocoop.framework.safe.ex.authc;
public class AuthenticatingException extends Exception {
public AuthenticatingException(String message) {
super(message);
}
@Override
public synchronized Throwable fillInStackTrace() {
return null;
}
}