Lidarr/NzbDrone.Core/Indexers/Newznab/SizeParsingException.cs

16 lines
355 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
2013-08-14 05:25:53 +00:00
using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Indexers.Newznab
{
2013-08-14 05:25:53 +00:00
public class SizeParsingException : NzbDroneException
{
2013-08-14 05:25:53 +00:00
public SizeParsingException(string message, params object[] args) : base(message, args)
{
}
}
}