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

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

There is a newer version: 1.3.6.2
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy