NadekoBot/NadekoBot.Core/Modules/Music/Common/Exceptions/NotInVoiceChannelException.cs

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.") { }
}
}