diff --git a/Lottery/Exception.cs b/Lottery/Exception.cs new file mode 100644 index 0000000..5905777 --- /dev/null +++ b/Lottery/Exception.cs @@ -0,0 +1,9 @@ +namespace Lottery +{ + /// + /// Base Exception class for the LottoPicker app + /// + internal class LottoPickerException(string message) : Exception(message) + { + } +}