mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-17 21:44:48 -04: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
16 lines
387 B
C#
16 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)
|
|
{
|
|
}
|
|
}
|
|
}
|