10 lines
248 B
C#
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.") { }
|
|||
|
}
|
|||
|
}
|