com.akeyless.api.exceptions.AlreadyExistsException Maven / Gradle / Ivy
package com.akeyless.api.exceptions;
import com.akeyless.api.utils.APIErrorResponse;
public class AlreadyExistsException extends ApiBaseException {
public AlreadyExistsException(int statusCode, APIErrorResponse errorResponse) {
super(statusCode, errorResponse);
}
}