mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-23 22:45:06 -04:00
19 lines
420 B
C#
19 lines
420 B
C#
using System;
|
|
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Notifications.Trakt
|
|
{
|
|
public class TraktException : NzbDroneException
|
|
{
|
|
public TraktException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public TraktException(string message, Exception innerException, params object[] args)
|
|
: base(message, innerException, args)
|
|
{
|
|
}
|
|
}
|
|
}
|