result/src/Result.Tests/Fixtures/CustomTestError.cs
Louis Seubert 246d15de38
All checks were successful
default / dotnet default workflow (8.0) (push) Successful in 34s
chore: add copyright header
2024-05-01 18:37:20 +02:00

10 lines
No EOL
294 B
C#

// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
namespace Geekeey.Extensions.Result.Tests;
internal sealed class CustomTestError : Error
{
internal const string DefaultMessage = "This is a custom error for test";
public override string Message => DefaultMessage;
}