Radarr/src/NzbDrone.Core/Notifications/PushBullet/PushBulletException.cs

17 lines
419 B
C#

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