mirror of
https://github.com/AlexMacocian/Slim.git
synced 2026-07-15 15:19:59 +00:00
11 lines
219 B
C#
11 lines
219 B
C#
using System;
|
|
|
|
namespace Slim.Tests.Models;
|
|
public sealed class ThrowingIndependentService : IIndependentService
|
|
{
|
|
public ThrowingIndependentService()
|
|
{
|
|
throw new InvalidOperationException();
|
|
}
|
|
}
|