New: Prevent Boot Loop if Config file Unauthorized access. (#554)
* New: Prevent Boot Loop if Config file Unauthorized access. * Update NzbDroneLogger.cspull/560/head
parent
e914ca86dc
commit
0596215358
@ -0,0 +1,16 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue