wabbajack/Wabbajack.Services.OSIntegrated/ThrowingUserInterventionHandler.cs
2022-10-06 17:00:36 -06:00

12 lines
319 B
C#

using System;
using Wabbajack.DTOs.Interventions;
namespace Wabbajack.Services.OSIntegrated;
public class ThrowingUserInterventionHandler : IUserInterventionHandler
{
public void Raise(IUserIntervention intervention)
{
throw new Exception("Unexpected user intervention, this should throw");
}
}