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