You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/NzbDrone.Common/Exceptions/ServiceProviderException.cs

30 lines
721 B

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