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