mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
21 lines
474 B
C#
21 lines
474 B
C#
using System;
|
|
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)
|
|
{
|
|
}
|
|
|
|
public PlexException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|