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