NadekoBot/NadekoBot.Modules.Games/Common/Hangman/Exceptions/TermNotFoundException.cs

12 lines
250 B
C#
Raw Normal View History

using System;
namespace NadekoBot.Modules.Games.Common.Hangman.Exceptions
{
public class TermNotFoundException : Exception
{
public TermNotFoundException() : base("Term of that type couldn't be found")
{
}
}
}