| 28 | } |
| 29 | |
| 30 | export class QueueNotFoundError extends AbstractError { |
| 31 | message = "Queue not found"; |
| 32 | embeds = [ |
| 33 | new EmbedBuilder().setDescription(`Queues can be created with ${commandMention("queues", "add")}.`), |
| 34 | ]; |
| 35 | } |
| 36 | |
| 37 | export class VoiceNotFoundError extends AbstractError { |
| 38 | message = "Voice not found"; |
nothing calls this directly
no test coverage detected