// 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; }