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

com.here.account.oauth2.AccessTokenException Maven / Gradle / Ivy

Go to download

here-oauth-client is for clients of the HERE AAA, and supports OAuth2.0 grant_types=client_credentials

There is a newer version: 0.4.9
Show newest version
/*
 * Copyright (c) 2016 HERE Europe B.V.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.here.account.oauth2;

/**
 * If you had trouble authenticating, and got an HTTP response, 
 * you get an AccessTokenException.
 * This could be because the client or resource owner failed to 
 * properly authenticate a request to the authorization server, 
 * or because the request could not be fulfilled for some other 
 * reason.
 * 
 * @author kmccrack
 *
 */
public class AccessTokenException extends RuntimeException {

    /**
     * default.
     */
    private static final long serialVersionUID = 1L;
    
    private final int statusCode;
    private final ErrorResponse errorResponse;
    
    public AccessTokenException(int statusCode, ErrorResponse errorResponse) {
        super("HTTP status code " + statusCode + ", body " + errorResponse);
        this.statusCode = statusCode;
        this.errorResponse = errorResponse;
    }

    public int getStatusCode() {
        return statusCode;
    }

    public ErrorResponse getErrorResponse() {
        return errorResponse;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy