wabbajack/Wabbajack.Services.OSIntegrated/ThrowingUserInterventionHandler.cs

12 lines
319 B
C#
Raw Permalink Normal View History

2022-10-06 22:54:01 +00:00
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");
}
}