ru.mynewtons.starter.oauth2.exception.UserNotEnabledException Maven / Gradle / Ivy
package ru.mynewtons.starter.oauth2.exception;
import org.springframework.http.HttpStatus;
import org.springframework.security.core.AuthenticationException;
import org.springframework.web.bind.annotation.ResponseStatus;
@ResponseStatus(HttpStatus.BAD_REQUEST)
public class UserNotEnabledException extends AuthenticationException {
public UserNotEnabledException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy