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

13 lines
298 B
C#

using System;
namespace NadekoBot.Modules.Music.Common.Exceptions
{
public class SongNotFoundException : Exception
{
public SongNotFoundException(string message) : base(message)
{
}
public SongNotFoundException() : base("Song is not found.") { }
}
}