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