mirror of
https://github.com/AlexMacocian/Slim.git
synced 2026-07-21 01:59:51 +00:00
30705c58cc
Fix exception handling
13 lines
225 B
C#
13 lines
225 B
C#
using System;
|
|
|
|
namespace Slim.Tests.Models
|
|
{
|
|
public sealed class ThrowingService : IThrowingService
|
|
{
|
|
public ThrowingService()
|
|
{
|
|
throw new InvalidOperationException();
|
|
}
|
|
}
|
|
}
|