Also deleted ConfigurationException since it is unused.pull/231/head
parent
f29f10e2ab
commit
a937de74cf
@ -1,17 +1,3 @@
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace Recyclarr.Cli.Cache;
|
||||
|
||||
[Serializable]
|
||||
public class CacheException : Exception
|
||||
{
|
||||
public CacheException(string? message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
|
||||
protected CacheException(SerializationInfo info, StreamingContext context)
|
||||
: base(info, context)
|
||||
{
|
||||
}
|
||||
}
|
||||
public class CacheException(string? message) : Exception(message);
|
||||
|
@ -1,19 +1,3 @@
|
||||
using System.Runtime.Serialization;
|
||||
using JetBrains.Annotations;
|
||||
|
||||
namespace Recyclarr.Cli.Processors;
|
||||
|
||||
[Serializable]
|
||||
public class FatalException : Exception
|
||||
{
|
||||
public FatalException(string? message, Exception? innerException = null)
|
||||
: base(message, innerException)
|
||||
{
|
||||
}
|
||||
|
||||
[UsedImplicitly]
|
||||
protected FatalException(SerializationInfo info, StreamingContext context)
|
||||
: base(info, context)
|
||||
{
|
||||
}
|
||||
}
|
||||
public class FatalException(string? message, Exception? innerException = null) : Exception(message, innerException);
|
||||
|
@ -1,56 +0,0 @@
|
||||
using System.Runtime.Serialization;
|
||||
using System.Text;
|
||||
using FluentValidation.Results;
|
||||
|
||||
namespace Recyclarr.Config.Parsing.ErrorHandling;
|
||||
|
||||
[Serializable]
|
||||
public class ConfigurationException : Exception
|
||||
{
|
||||
protected ConfigurationException(SerializationInfo info, StreamingContext context)
|
||||
: base(info, context)
|
||||
{
|
||||
}
|
||||
|
||||
private ConfigurationException(string propertyName, Type deserializableType, IEnumerable<string> messages)
|
||||
{
|
||||
PropertyName = propertyName;
|
||||
DeserializableType = deserializableType;
|
||||
ErrorMessages = messages.ToList();
|
||||
}
|
||||
|
||||
public ConfigurationException(string propertyName, Type deserializableType, string message)
|
||||
: this(propertyName, deserializableType, new[] {message})
|
||||
{
|
||||
}
|
||||
|
||||
public ConfigurationException(
|
||||
string propertyName,
|
||||
Type deserializableType,
|
||||
IEnumerable<ValidationFailure> validationFailures)
|
||||
: this(propertyName, deserializableType, validationFailures.Select(e => e.ToString()))
|
||||
{
|
||||
}
|
||||
|
||||
public IReadOnlyCollection<string> ErrorMessages { get; } = new List<string>();
|
||||
public string PropertyName { get; } = "";
|
||||
public Type DeserializableType { get; } = default!;
|
||||
|
||||
public override string Message => BuildMessage();
|
||||
|
||||
private string BuildMessage()
|
||||
{
|
||||
const string delim = "\n - ";
|
||||
var builder = new StringBuilder(
|
||||
$"An exception occurred while deserializing type '{DeserializableType}' for YML property '{PropertyName}'");
|
||||
|
||||
// ReSharper disable once InvertIf
|
||||
if (ErrorMessages.Count > 0)
|
||||
{
|
||||
builder.Append(":" + delim);
|
||||
builder.Append(string.Join(delim, ErrorMessages));
|
||||
}
|
||||
|
||||
return builder.ToString();
|
||||
}
|
||||
}
|
@ -1,17 +1,3 @@
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace Recyclarr.Config.Parsing.ErrorHandling;
|
||||
|
||||
[Serializable]
|
||||
public class FeatureRemovalException : Exception
|
||||
{
|
||||
protected FeatureRemovalException(SerializationInfo info, StreamingContext context)
|
||||
: base(info, context)
|
||||
{
|
||||
}
|
||||
|
||||
public FeatureRemovalException(string message, string docLink)
|
||||
: base($"{message} See: {docLink}")
|
||||
{
|
||||
}
|
||||
}
|
||||
public class FeatureRemovalException(string message, string docLink) : Exception($"{message} See: {docLink}");
|
||||
|
Loading…
Reference in new issue