From 1b4e0baebb2a706a8748199efcb9339b029ce106 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Thu, 26 Sep 2024 21:04:23 +0100 Subject: [PATCH] add base exception class --- Lottery/Exception.cs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Lottery/Exception.cs 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) + { + } +}