feat(wizard): add WizardStorageException

This commit is contained in:
2026-06-04 08:30:50 +03:00
parent 96a4807002
commit 1b49211085
@@ -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) { }
}