7 lines
192 B
TypeScript
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";
|
|
}
|
|
}
|