io.sphere.sdk.client.AuthorizationException Maven / Gradle / Ivy
The newest version!
package io.sphere.sdk.client;
/** Exception thrown when the Sphere authorization service responds with other status code than HTTP 200 OK. */
public class AuthorizationException extends SphereClientException {
private static final long serialVersionUID = 0L;
public AuthorizationException(String message) {
super(message);
}
public AuthorizationException(String message, Throwable cause) {
super(message, cause);
}
public AuthorizationException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy