All checks were successful
default / dotnet default workflow (8.0) (push) Successful in 34s
10 lines
No EOL
294 B
C#
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;
|
|
} |