using System; namespace GmRelay.Shared.Features.Sessions.CreateSession.Wizard; /// /// Raised when the wizard's persistence layer fails. The wizard catches /// this specifically so the user sees a friendly message instead of a /// raw stack trace. /// public sealed class WizardStorageException : Exception { public WizardStorageException(string message, Exception inner) : base(message, inner) { } }