Fixed: Plex server authentication

This commit is contained in:
Mark McDowall
2014-04-14 22:07:43 -07:00
parent af75813347
commit 5bc820efed
9 changed files with 202 additions and 94 deletions
@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Notifications.Plex
{
public class PlexException : NzbDroneException
{
public PlexException(string message) : base(message)
{
}
public PlexException(string message, params object[] args) : base(message, args)
{
}
}
}