com.akeyless.api.exceptions.ApiCommunicationException Maven / Gradle / Ivy
package com.akeyless.api.exceptions;
//Thrown when a communication error occurs when sending a request to the Akeyless services
public class ApiCommunicationException extends Exception {
private static final long serialVersionUID = 1L;
public ApiCommunicationException(String message) {
super(message);
}
public ApiCommunicationException(Throwable cause) {
super(cause);
}
public ApiCommunicationException(String message, Throwable cause) {
super(message, cause);
}
}