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.
29 lines
866 B
29 lines
866 B
using System;
|
|
using NzbDrone.Core.Parser.Model;
|
|
|
|
namespace NzbDrone.Core.Exceptions
|
|
{
|
|
public class ReleaseUnavailableException : ReleaseDownloadException
|
|
{
|
|
public ReleaseUnavailableException(ReleaseInfo release, string message, params object[] args)
|
|
: base(release, message, args)
|
|
{
|
|
}
|
|
|
|
public ReleaseUnavailableException(ReleaseInfo release, string message)
|
|
: base(release, message)
|
|
{
|
|
}
|
|
|
|
public ReleaseUnavailableException(ReleaseInfo release, string message, Exception innerException, params object[] args)
|
|
: base(release, message, innerException, args)
|
|
{
|
|
}
|
|
|
|
public ReleaseUnavailableException(ReleaseInfo release, string message, Exception innerException)
|
|
: base(release, message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|