Files
2026-07-13 13:32:57 +08:00

7 lines
192 B
TypeScript

export class OutOfEntitlementError extends Error {
constructor() {
super("You can't trigger a task because you have run out of credits.");
this.name = "OutOfEntitlementError";
}
}