io.sphere.sdk.client.ClientErrorException Maven / Gradle / Ivy
package io.sphere.sdk.client;
/**
* Exceptions for SPHERE.IO http responses with an error code 4xx.
*/
public class ClientErrorException extends SphereServiceException {
private static final long serialVersionUID = 0L;
public ClientErrorException(final Integer statusCode) {
super(statusCode);
}
public ClientErrorException(final String message, final Integer statusCode) {
super(message, statusCode);
}
public ClientErrorException(final String message, final Throwable cause, final Integer statusCode) {
super(message, cause, statusCode);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy