mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-21 22:05:43 -04:00
17 lines
414 B
C#
17 lines
414 B
C#
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Update
|
|
{
|
|
public class UpdateVerificationFailedException : UpdateFailedException
|
|
{
|
|
public UpdateVerificationFailedException(string message, params object[] args)
|
|
: base(message, args)
|
|
{
|
|
}
|
|
|
|
public UpdateVerificationFailedException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|
|
} |