Example usage for org.springframework.security.oauth2.common.exceptions OAuth2Exception subclass-usage

List of usage examples for org.springframework.security.oauth2.common.exceptions OAuth2Exception subclass-usage

Introduction

In this page you can find the example usage for org.springframework.security.oauth2.common.exceptions OAuth2Exception subclass-usage.

Usage

From source file org.joyrest.oauth2.exception.ServerErrorException.java

public class ServerErrorException extends OAuth2Exception {

    private static final long serialVersionUID = -589528744430925746L;

    public ServerErrorException(final String msg, final Throwable t) {
        super(msg, t);

From source file org.joyrest.oauth2.exception.UnauthorizedException.java

public class UnauthorizedException extends OAuth2Exception {

    private static final long serialVersionUID = 1001022028598022203L;

    public UnauthorizedException(final String msg, final Throwable t) {
        super(msg, t);

From source file org.joyrest.oauth2.exception.ForbiddenException.java

public class ForbiddenException extends OAuth2Exception {

    private static final long serialVersionUID = 1063323068091513848L;

    public ForbiddenException(final String msg, final Throwable t) {
        super(msg, t);

From source file org.mitre.oauth2.exception.NonceReuseException.java

public class NonceReuseException extends OAuth2Exception {

    private static final long serialVersionUID = 1L;

    public NonceReuseException(String clientId, String nonce) {
        super("Client " + clientId + " attempted to use reuse nonce " + nonce);