1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-24 22:35:49 -04:00
Files
Radarr/src/NzbDrone.Host/AccessControl/RemoteAccessException.cs
T
2019-12-27 20:40:13 -05:00

29 lines
707 B
C#

using System;
using NzbDrone.Common.Exceptions;
namespace Radarr.Host.AccessControl
{
public class RemoteAccessException : NzbDroneException
{
public RemoteAccessException(string message, params object[] args)
: base(message, args)
{
}
public RemoteAccessException(string message)
: base(message)
{
}
public RemoteAccessException(string message, Exception innerException, params object[] args)
: base(message, innerException, args)
{
}
public RemoteAccessException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}