cn.ocoop.framework.safe.ex.InvalidConfigStateException 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;
public class InvalidConfigStateException extends RuntimeException {
public InvalidConfigStateException(String message) {
super(message);
}
@Override
public synchronized Throwable fillInStackTrace() {
return null;
}
}