io.sphere.sdk.client.UnauthorizedException Maven / Gradle / Ivy
package io.sphere.sdk.client;
public class UnauthorizedException extends ClientErrorException {
private static final long serialVersionUID = 0L;
public UnauthorizedException(final String message) {
super(message, 401);
}
public UnauthorizedException(final String message, final Throwable cause) {
super(message, cause, 401);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy