Lottery/Lottery/Exception.cs
onyx-and-iris e1ab2087a2 rename LottoPickerException to LotteryException
add SemanticScreenReader Announcement on button clicked.
It reads the text from the NumbersLabel
2024-09-27 02:01:24 +01:00

10 lines
196 B
C#

namespace Lottery
{
/// <summary>
/// Base Exception class for the Lottery app
/// </summary>
internal class LotteryException(string message) : Exception(message)
{
}
}