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/Processors/FatalException.cs

20 lines
384 B

using System.Runtime.Serialization;
using JetBrains.Annotations;
namespace Recyclarr.Cli.Processors;
[Serializable]
public class FatalException : Exception
{
public FatalException(string? message)
: base(message)
{
}
[UsedImplicitly]
protected FatalException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}