add base exception class

This commit is contained in:
onyx-and-iris 2024-09-26 21:04:23 +01:00
parent 7d1525804e
commit 1b4e0baebb

9
Lottery/Exception.cs Normal file
View File

@ -0,0 +1,9 @@
namespace Lottery
{
/// <summary>
/// Base Exception class for the LottoPicker app
/// </summary>
internal class LottoPickerException(string message) : Exception(message)
{
}
}