mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
22 lines
386 B
C#
22 lines
386 B
C#
using System;
|
|
|
|
namespace NzbDrone.Common.Exceptions
|
|
{
|
|
|
|
|
|
public abstract class NzbDroneException : ApplicationException
|
|
{
|
|
protected NzbDroneException(string message, params object[] args)
|
|
: base(string.Format(message, args))
|
|
{
|
|
|
|
}
|
|
|
|
protected NzbDroneException(string message)
|
|
: base(message)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|