NadekoBot/NadekoBot.Modules.Music/Common/Exceptions/NotInVoiceChannelException.cs
2017-09-30 00:46:33 +02:00

10 lines
248 B
C#

using System;
namespace NadekoBot.Modules.Music.Common.Exceptions
{
public class NotInVoiceChannelException : Exception
{
public NotInVoiceChannelException() : base("You're not in the voice channel on this server.") { }
}
}