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

io.sphere.sdk.client.ClientErrorException Maven / Gradle / Ivy

There is a newer version: 1.0.0-M26
Show newest version
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