All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.dengchen2020.security.exception.ForceOfflineException Maven / Gradle / Ivy

There is a newer version: 0.0.28
Show newest version
package io.github.dengchen2020.security.exception;

/**
 * 访问时被强制下线,前端需跳转登录
 * @author dengchen
 * @since 2024/7/24
 */
public class ForceOfflineException extends SessionTimeOutException {

    public static final String DEFAULT_MESSAGE = "您已被踢下线,请重新登录";

    public ForceOfflineException(String message) {
        super(message);
    }

    public ForceOfflineException() {
        super(DEFAULT_MESSAGE);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy