com.imiconnect.connect.core.client.AuthenticationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connect-sdk-java Show documentation
Show all versions of connect-sdk-java Show documentation
IMIConnect platform Java SDK client library.
The newest version!
package com.imiconnect.connect.core.client;
import javax.annotation.Nullable;
/**
* Specific response exception that is thrown when there is an issue authenticating with the rest
* api.
*/
public class AuthenticationException extends HttpClientErrorException {
public AuthenticationException(
String requestId, int httpStatusCode, String reason, @Nullable String code) {
super(requestId, httpStatusCode, reason, code);
}
}