Files
Readarr/src/NzbDrone.Core/Configuration/AccessDeniedConfigFileException.cs
Qstick 0596215358 New: Prevent Boot Loop if Config file Unauthorized access. (#554)
* New: Prevent Boot Loop if Config file Unauthorized access.

* Update NzbDroneLogger.cs
2018-11-30 21:30:28 -05:00

17 lines
413 B
C#

using System;
using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Configuration
{
public class AccessDeniedConfigFileException : NzbDroneException
{
public AccessDeniedConfigFileException(string message) : base(message)
{
}
public AccessDeniedConfigFileException(string message, Exception innerException) : base(message, innerException)
{
}
}
}