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

ru.mynewtons.starter.oauth2.exception.UserNotAuthenticatedException Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version
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.NOT_FOUND)
public class UserNotAuthenticatedException extends AuthenticationException {

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

    public UserNotAuthenticatedException(String msg) {
        super(msg);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy