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

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

The newest version!
package ru.mynewtons.starter.oauth2.exception;

import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;

@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
public class UserRoleException extends RuntimeException {

    public UserRoleException(String message){
        super(message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy