com.svix.exceptions.WebhookVerificationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of svix Show documentation
Show all versions of svix Show documentation
Svix webhooks API client and webhook verification library
package com.svix.exceptions;
public class WebhookVerificationException extends Exception {
public WebhookVerificationException(final String message) {
super(message);
}
}