1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-20 21:55:03 -04:00
Files
Radarr/src/Radarr.Http/Mapping/ResourceMappingException.cs
T
2019-12-27 20:40:13 -05:00

15 lines
367 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
namespace Radarr.Http.Mapping
{
public class ResourceMappingException : ApplicationException
{
public ResourceMappingException(IEnumerable<string> error)
: base(Environment.NewLine + string.Join(Environment.NewLine, error.OrderBy(c => c)))
{
}
}
}