result/src/Results.Tests/Fixtures/CustomTestError.cs
Louis Seubert ca9f290d44
All checks were successful
dotnet publish / package (8.0) (push) Successful in 37s
feat: initial project commit
2024-04-14 17:45:15 +02:00

7 lines
No EOL
216 B
C#

namespace Geekeey.Common.Results.Tests;
internal sealed class CustomTestError : Error
{
internal const string DefaultMessage = "This is a custom error for test";
public override string Message => DefaultMessage;
}