mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-28 18:05:51 -04:00
16 lines
348 B
C#
16 lines
348 B
C#
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Parser
|
|
{
|
|
public class InvalidDateException : NzbDroneException
|
|
{
|
|
public InvalidDateException(string message, params object[] args) : base(message, args)
|
|
{
|
|
}
|
|
|
|
public InvalidDateException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|