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

com.atlassian.stash.rest.client.api.StashUnauthorizedRestException Maven / Gradle / Ivy

The newest version!
package com.atlassian.stash.rest.client.api;

import java.util.List;

/**
 * Exception caused by HTTP 401 Unauthorized
 */
public class StashUnauthorizedRestException extends StashRestException {

    public StashUnauthorizedRestException(String message, int statusCode, String statusMessage) {
        super(message, statusCode, statusMessage);
    }

    public StashUnauthorizedRestException(List errors, int statusCode, String statusMessage) {
        super(errors, statusCode, statusMessage);
    }

    public StashUnauthorizedRestException(List errors, int statusCode, String statusMessage, String responseBody) {
        super(errors, statusCode, statusMessage, responseBody);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy