mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-27 23:16:58 -04:00
12 lines
267 B
C#
12 lines
267 B
C#
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Parser
|
|
{
|
|
public class EpisodeNotFoundException : NzbDroneException
|
|
{
|
|
public EpisodeNotFoundException(string message, params object[] args) : base(message, args)
|
|
{
|
|
}
|
|
}
|
|
}
|