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