NadekoBot/NadekoBot.Modules.Games/Common/Hangman/Exceptions/TermNotFoundException.cs
2017-09-30 00:46:33 +02:00

12 lines
250 B
C#

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