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

com.imiconnect.connect.core.client.AuthenticationException Maven / Gradle / Ivy

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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy