| 53 | } |
| 54 | |
| 55 | export class ScheduleNotFoundError extends AbstractError { |
| 56 | message = "Schedule not found"; |
| 57 | embeds = [ |
| 58 | new EmbedBuilder().setDescription(`Schedules can be created with ${commandMention("schedules", "add")}.`), |
| 59 | ]; |
| 60 | } |
| 61 | |
| 62 | export class PrioritizedNotFoundError extends AbstractError { |
| 63 | message = "Prioritized not found"; |
nothing calls this directly
no test coverage detected