From 1b49211085c99bfff4adddae93054d70785284a5 Mon Sep 17 00:00:00 2001 From: Toutsu Date: Thu, 4 Jun 2026 08:30:50 +0300 Subject: [PATCH] feat(wizard): add WizardStorageException --- .../CreateSession/Wizard/WizardStorageException.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/GmRelay.Bot/Features/Sessions/CreateSession/Wizard/WizardStorageException.cs diff --git a/src/GmRelay.Bot/Features/Sessions/CreateSession/Wizard/WizardStorageException.cs b/src/GmRelay.Bot/Features/Sessions/CreateSession/Wizard/WizardStorageException.cs new file mode 100644 index 0000000..a565e0f --- /dev/null +++ b/src/GmRelay.Bot/Features/Sessions/CreateSession/Wizard/WizardStorageException.cs @@ -0,0 +1,8 @@ +using System; + +namespace GmRelay.Bot.Features.Sessions.CreateSession.Wizard; + +public sealed class WizardStorageException : Exception +{ + public WizardStorageException(string message, Exception inner) : base(message, inner) { } +}