mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-25 22:37:27 -04:00
Reformat and apply Stylecop rules
This commit is contained in:
@@ -5,19 +5,23 @@ namespace Radarr.Host.AccessControl
|
||||
{
|
||||
public class RemoteAccessException : NzbDroneException
|
||||
{
|
||||
public RemoteAccessException(string message, params object[] args) : base(message, args)
|
||||
public RemoteAccessException(string message, params object[] args)
|
||||
: base(message, args)
|
||||
{
|
||||
}
|
||||
|
||||
public RemoteAccessException(string message) : base(message)
|
||||
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, params object[] args)
|
||||
: base(message, innerException, args)
|
||||
{
|
||||
}
|
||||
|
||||
public RemoteAccessException(string message, Exception innerException) : base(message, innerException)
|
||||
public RemoteAccessException(string message, Exception innerException)
|
||||
: base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user