|
|
@ -1,4 +1,5 @@
|
|
|
|
using NzbDrone.Common.Exceptions;
|
|
|
|
using System;
|
|
|
|
|
|
|
|
using NzbDrone.Common.Exceptions;
|
|
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Notifications.Plex
|
|
|
|
namespace NzbDrone.Core.Notifications.Plex
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -11,5 +12,9 @@ namespace NzbDrone.Core.Notifications.Plex
|
|
|
|
public PlexException(string message, params object[] args) : base(message, args)
|
|
|
|
public PlexException(string message, params object[] args) : base(message, args)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public PlexException(string message, Exception innerException) : base(message, innerException)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|