mirror of
https://github.com/Lidarr/Lidarr
synced 2026-05-05 11:00:34 +02:00
15 lines
351 B
C#
15 lines
351 B
C#
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Parser
|
|
{
|
|
public class InvalidSeasonException : NzbDroneException
|
|
{
|
|
public InvalidSeasonException(string message, params object[] args) : base(message, args)
|
|
{
|
|
}
|
|
|
|
public InvalidSeasonException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|