| 81 | } |
| 82 | |
| 83 | export class AdminNotFoundError extends AbstractError { |
| 84 | message = "Admin not found"; |
| 85 | embeds = [ |
| 86 | new EmbedBuilder().setDescription(`Admins can be added with ${commandMention("admins", "add")}.`), |
| 87 | ]; |
| 88 | } |
| 89 | |
| 90 | export class NotOnQueueWhitelistError extends AbstractError { |
| 91 | message = "Failed to join queue because you are not on the queue whitelist"; |
nothing calls this directly
no test coverage detected