mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-27 22:57:09 -04:00
Added: A Huge Cleanup of old Series Code. (Let's pray nothing breaks :P) (#2589)
This commit is contained in:
@@ -1,27 +0,0 @@
|
||||
using NzbDrone.Common.Exceptions;
|
||||
|
||||
namespace NzbDrone.Core.Exceptions
|
||||
{
|
||||
public class SeriesNotFoundException : NzbDroneException
|
||||
{
|
||||
public int TvdbSeriesId { get; set; }
|
||||
|
||||
public SeriesNotFoundException(int tvdbSeriesId)
|
||||
: base(string.Format("Series with tvdbid {0} was not found, it may have been removed from TheTVDB.", tvdbSeriesId))
|
||||
{
|
||||
TvdbSeriesId = tvdbSeriesId;
|
||||
}
|
||||
|
||||
public SeriesNotFoundException(int tvdbSeriesId, string message, params object[] args)
|
||||
: base(message, args)
|
||||
{
|
||||
TvdbSeriesId = tvdbSeriesId;
|
||||
}
|
||||
|
||||
public SeriesNotFoundException(int tvdbSeriesId, string message)
|
||||
: base(message)
|
||||
{
|
||||
TvdbSeriesId = tvdbSeriesId;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user