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

cn.bootx.platform.starter.auth.exception.UserNotFoundException Maven / Gradle / Ivy

package cn.bootx.platform.starter.auth.exception;

/**
 * 用户未找到异常
 *
 * @author xxm
 * @since 2021/7/30
 */
public class UserNotFoundException extends LoginFailureException {

    public UserNotFoundException(String username) {
        super(username, "用户未找到");
    }

    public UserNotFoundException() {
        super("用户未找到");
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy