io.quarkiverse.githubapp.error.ErrorHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-github-app Show documentation
Show all versions of quarkus-github-app Show documentation
Automate GitHub tasks with a GitHub App
package io.quarkiverse.githubapp.error;
import org.kohsuke.github.GHEventPayload;
import io.quarkiverse.githubapp.GitHubEvent;
public interface ErrorHandler {
/**
* Note that the payload might be null if the error happened before the events have been dispatched with a payload.
*/
void handleError(GitHubEvent gitHubEvent, GHEventPayload payload, Throwable t);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy