dev.openfga.sdk.errors.FgaApiNotFoundError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openfga-sdk Show documentation
Show all versions of openfga-sdk Show documentation
This is an autogenerated Java SDK for OpenFGA. It provides a wrapper around the [OpenFGA API definition](https://openfga.dev/api).
package dev.openfga.sdk.errors;
import java.net.http.HttpHeaders;
public class FgaApiNotFoundError extends FgaError {
public FgaApiNotFoundError(
String message, Throwable cause, int code, HttpHeaders responseHeaders, String responseBody) {
super(message, cause, code, responseHeaders, responseBody);
}
public FgaApiNotFoundError(String message, int code, HttpHeaders responseHeaders, String responseBody) {
super(message, code, responseHeaders, responseBody);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy