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

cloud.agileframework.security.exception.TokenActiveException Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package cloud.agileframework.security.exception;

import org.springframework.security.authentication.AccountStatusException;

/**
 * 令牌活跃过期
 * @author 佟盟 on 2018/7/4
 */
public class TokenActiveException extends AccountStatusException {
    public TokenActiveException(String msg) {
        super(msg);
    }

    public TokenActiveException(String msg, Throwable t) {
        super(msg, t);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy