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

10 lines
248 B
C#
Raw Normal View History

2017-07-17 02:37:51 +00:00
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.") { }
}
}