mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-20 21:55:03 -04:00
18 lines
409 B
C#
18 lines
409 B
C#
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Update
|
|
{
|
|
public class UpdateFolderNotWritableException : UpdateFailedException
|
|
{
|
|
public UpdateFolderNotWritableException(string message, params object[] args)
|
|
: base(message, args)
|
|
{
|
|
}
|
|
|
|
public UpdateFolderNotWritableException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|