io.vrap.rmf.base.client.oauth2.AuthException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rmf-java-base Show documentation
Show all versions of rmf-java-base Show documentation
The e-commerce SDK from commercetools Composable Commerce for Java
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);
}
}