mirror of
https://github.com/Readarr/Readarr
synced 2025-12-26 10:14:51 +01:00
15 lines
360 B
C#
15 lines
360 B
C#
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Notifications.Plex
|
|
{
|
|
public class PlexVersionException : NzbDroneException
|
|
{
|
|
public PlexVersionException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public PlexVersionException(string message, params object[] args) : base(message, args)
|
|
{
|
|
}
|
|
}
|
|
}
|