Enable nullable ref types in common library

This commit is contained in:
Andrew Cooper
2022-04-15 21:30:16 +10:00
parent 235e6484de
commit 01492a697f
4 changed files with 15 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
namespace Games.Common.IO;
public class InsufficientInputException : Exception
{
public InsufficientInputException()
: base("Insufficient input was supplied")
{
}
}