mirror of
https://github.com/Radarr/Radarr
synced 2026-05-05 01:10:51 +02:00
20 lines
474 B
C#
20 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)
|
|
{
|
|
}
|
|
}
|
|
}
|