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

io.polyapi.commons.api.error.http.UnauthorizedException Maven / Gradle / Ivy

There is a newer version: 0.15.3
Show newest version
package io.polyapi.commons.api.error.http;

import io.polyapi.commons.api.http.Response;

/**
 * Exception thrown when there's an Unauthorized (status code 401) response from the server.
 */
public class UnauthorizedException extends HttpResponseException {

    /**
     * Constructor that takes a message and the response returned.
     *
     * @param response The response.
     */
    public UnauthorizedException(Response response) {
        super("An Unauthorized status code was received. Please verify the permissions of your user.", response);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy