mirror of
https://github.com/Readarr/Readarr
synced 2025-12-20 15:23:55 +01:00
17 lines
372 B
C#
17 lines
372 B
C#
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Update
|
|
{
|
|
public class UpdateFailedException : NzbDroneException
|
|
{
|
|
public UpdateFailedException(string message, params object[] args)
|
|
: base(message, args)
|
|
{
|
|
}
|
|
|
|
public UpdateFailedException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|