Files
Slim/Slim.Tests/Models/ThrowingService.cs
T
2022-09-09 09:53:35 +00:00

12 lines
195 B
C#

using System;
namespace Slim.Tests.Models;
public sealed class ThrowingService : IThrowingService
{
public ThrowingService()
{
throw new InvalidOperationException();
}
}