You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/Recyclarr.Cli/Migration/MigrationException.cs

13 lines
416 B

namespace Recyclarr.Cli.Migration;
public class MigrationException(
Exception originalException,
string operationDescription,
IReadOnlyCollection<string> remediation)
: Exception
{
public Exception OriginalException { get; } = originalException;
public string OperationDescription { get; } = operationDescription;
public IReadOnlyCollection<string> Remediation { get; } = remediation;
}