| 35 | } |
| 36 | |
| 37 | export class VoiceNotFoundError extends AbstractError { |
| 38 | message = "Voice not found"; |
| 39 | embeds = [ |
| 40 | new EmbedBuilder().setDescription(`Voices can be created with ${commandMention("voice", "add_source")}.`), |
| 41 | ]; |
| 42 | } |
| 43 | |
| 44 | export class DisplayNotFoundError extends AbstractError { |
| 45 | message = "Display not found"; |
nothing calls this directly
no test coverage detected