Files
Prowlarr/src/NzbDrone.Core/Update/UpdateFolderNotWritableException.cs
T
2016-12-23 13:45:24 -08:00

16 lines
374 B
C#

namespace NzbDrone.Core.Update
{
public class UpdateFolderNotWritableException : UpdateFailedException
{
public UpdateFolderNotWritableException(string message, params object[] args)
: base(message, args)
{
}
public UpdateFolderNotWritableException(string message)
: base(message)
{
}
}
}