7 lines
189 B
C#
7 lines
189 B
C#
namespace GmRelay.Web.Services;
|
|
|
|
public sealed class SubscriptionNotFoundException : Exception
|
|
{
|
|
public SubscriptionNotFoundException() : base("Calendar subscription not found.") { }
|
|
}
|