mirror of
https://github.com/Radarr/Radarr
synced 2026-01-08 00:23:00 +01:00
Include NzbDrone.Update in mono/osx package Do not ignore certificate warnings for services Check hash before extracting update New: Update support for Linux/OS X - see the wiki for more information
15 lines
387 B
C#
15 lines
387 B
C#
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Update
|
|
{
|
|
public class UpdateVerificationFailedException : NzbDroneException
|
|
{
|
|
public UpdateVerificationFailedException(string message, params object[] args) : base(message, args)
|
|
{
|
|
}
|
|
|
|
public UpdateVerificationFailedException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|