mirror of
https://github.com/wasp-lang/open-saas.git
synced 2025-05-19 08:40:39 +02:00
7 lines
192 B
TypeScript
7 lines
192 B
TypeScript
export class UnhandledWebhookEventError extends Error {
|
|
constructor(eventType: string) {
|
|
super(`Unhandled event type: ${eventType}`);
|
|
this.name = 'UnhandledWebhookEventError';
|
|
}
|
|
}
|