mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-23 07:29:02 -08:00
10 lines
186 B
C#
10 lines
186 B
C#
namespace Games.Common.IO;
|
|
|
|
public class InsufficientInputException : Exception
|
|
{
|
|
public InsufficientInputException()
|
|
: base("Insufficient input was supplied")
|
|
{
|
|
}
|
|
}
|