mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-03 07:15:24 +00:00
17 lines
413 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|