com.indix.exception.UnauthorizedException Maven / Gradle / Ivy
package com.indix.exception;
import org.apache.http.HttpStatus;
/**
* Indix exception corresponding to HTTP 401 error code
*/
public class UnauthorizedException extends IndixApiException {
public UnauthorizedException() {
super();
}
public UnauthorizedException(String message) {
super(HttpStatus.SC_UNAUTHORIZED, message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy