Files
basic-computer-games/00_Common/dotnet/Games.Common/IO/InsufficientInputException.cs
2022-04-15 21:30:16 +10:00

10 lines
186 B
C#

namespace Games.Common.IO;
public class InsufficientInputException : Exception
{
public InsufficientInputException()
: base("Insufficient input was supplied")
{
}
}