All checks were successful
dotnet publish / package (8.0) (push) Successful in 37s
7 lines
No EOL
216 B
C#
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;
|
|
} |