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.
Sonarr/src/NzbDrone.Core/Tv/MultipleSeriesFoundExceptio...

17 lines
414 B

using System.Collections.Generic;
using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Tv
{
public class MultipleSeriesFoundException : NzbDroneException
{
public List<Series> Series { get; set; }
public MultipleSeriesFoundException(List<Series> series, string message, params object[] args)
: base(message, args)
{
Series = series;
}
}
}