2025-04-22 22:43:20 +02:00

7 lines
192 B
TypeScript

export class UnhandledWebhookEventError extends Error {
constructor(eventType: string) {
super(`Unhandled event type: ${eventType}`);
this.name = 'UnhandledWebhookEventError';
}
}