Radarr/src/NzbDrone.Core/Update/UpdateVerificationFailedException.cs
2019-12-27 20:40:13 -05:00

15 lines
380 B
C#

namespace NzbDrone.Core.Update
{
public class UpdateVerificationFailedException : UpdateFailedException
{
public UpdateVerificationFailedException(string message, params object[] args)
: base(message, args)
{
}
public UpdateVerificationFailedException(string message)
: base(message)
{
}
}
}