io.quarkiverse.openfga.client.model.FGAException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-openfga-client-model Show documentation
Show all versions of quarkus-openfga-client-model Show documentation
OpenFGA Client API model classes
package io.quarkiverse.openfga.client.model;
import javax.annotation.Nullable;
public abstract class FGAException extends Exception {
public FGAException(@Nullable String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy