12 lines
250 B
C#
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")
|
|
{
|
|
}
|
|
}
|
|
}
|