From 7457315d6f7e886bde243eace08903a2835932c5 Mon Sep 17 00:00:00 2001 From: Toutsu Date: Thu, 7 May 2026 10:13:45 +0300 Subject: [PATCH] feat(#13): add SubscriptionNotFoundException --- src/GmRelay.Web/Services/SubscriptionNotFoundException.cs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/GmRelay.Web/Services/SubscriptionNotFoundException.cs diff --git a/src/GmRelay.Web/Services/SubscriptionNotFoundException.cs b/src/GmRelay.Web/Services/SubscriptionNotFoundException.cs new file mode 100644 index 0000000..cf573b0 --- /dev/null +++ b/src/GmRelay.Web/Services/SubscriptionNotFoundException.cs @@ -0,0 +1,6 @@ +namespace GmRelay.Web.Services; + +public sealed class SubscriptionNotFoundException : Exception +{ + public SubscriptionNotFoundException() : base("Calendar subscription not found.") { } +}