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

io.vrap.rmf.base.client.oauth2.AuthException Maven / Gradle / Ivy

There is a newer version: 17.17.0
Show newest version

package io.vrap.rmf.base.client.oauth2;

import io.vrap.rmf.base.client.ApiHttpException;
import io.vrap.rmf.base.client.ApiHttpHeaders;
import io.vrap.rmf.base.client.ApiHttpResponse;

public class AuthException extends ApiHttpException {
    public AuthException(final int statusCode, final String body, final ApiHttpHeaders headers) {
        this(statusCode, body, headers, null, null);
    }

    public AuthException(final int statusCode, final String body, final ApiHttpHeaders headers, final String message) {
        super(statusCode, body, headers, message, null);
    }

    public AuthException(final int statusCode, final String body, final ApiHttpHeaders headers, final String message,
            final ApiHttpResponse response) {
        super(statusCode, body, headers, message, response);
    }

    public AuthException(final int statusCode, final String body, final ApiHttpHeaders headers, final String message,
            final ApiHttpResponse response, Throwable cause) {
        super(statusCode, body, headers, message, response, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy