io.vrap.rmf.base.client.error.ServiceUnavailableException 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.error;
import io.vrap.rmf.base.client.ApiHttpHeaders;
import io.vrap.rmf.base.client.ApiHttpRequest;
import io.vrap.rmf.base.client.ApiHttpResponse;
public class ServiceUnavailableException extends ApiServerException {
public ServiceUnavailableException(final int statusCode, final String body, final ApiHttpHeaders headers, final String message, final ApiHttpResponse response) {
super(statusCode, body, headers, message, response);
}
public ServiceUnavailableException(final int statusCode, final String body, final ApiHttpHeaders headers, final String message, final ApiHttpResponse response, final ApiHttpRequest request) {
super(statusCode, body, headers, message, response, request);
}
}