Files
Readarr/NzbDrone.Core/Indexers/Newznab/SizeParsingException.cs
T
2013-08-14 08:18:34 -07:00

16 lines
355 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Indexers.Newznab
{
public class SizeParsingException : NzbDroneException
{
public SizeParsingException(string message, params object[] args) : base(message, args)
{
}
}
}