mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-23 07:29:02 -08:00
Enable nullable ref types in common library
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace Games.Common.IO;
|
||||
|
||||
public class InsufficientInputException : Exception
|
||||
{
|
||||
public InsufficientInputException()
|
||||
: base("Insufficient input was supplied")
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user