org.springframework.security.oauth2.common.exceptions.BadClientCredentialsException.java Source code

Java tutorial

Introduction

Here is the source code for org.springframework.security.oauth2.common.exceptions.BadClientCredentialsException.java

Source

package org.springframework.security.oauth2.common.exceptions;

/**
 * Exception thrown when a client was unable to authenticate.
 *
 * @author Ryan Heaton
 * @author Dave Syer
 */
@SuppressWarnings("serial")
public class BadClientCredentialsException extends ClientAuthenticationException {

    public BadClientCredentialsException() {
        super("Bad client credentials"); // Don't reveal source of error
    }

    @Override
    public int getHttpErrorCode() {
        return 401;
    }

    @Override
    public String getOAuth2ErrorCode() {
        return "invalid_client";
    }
}