feat(#13): add SubscriptionNotFoundException

This commit is contained in:
2026-05-07 10:13:45 +03:00
parent 59f9904d66
commit 7457315d6f
@@ -0,0 +1,6 @@
namespace GmRelay.Web.Services;
public sealed class SubscriptionNotFoundException : Exception
{
public SubscriptionNotFoundException() : base("Calendar subscription not found.") { }
}