Throw exception when unable to get size from newznab feed

This commit is contained in:
Mark McDowall
2013-08-12 19:14:03 -07:00
parent 44772c7391
commit 881686e994
2 changed files with 22 additions and 1 deletions
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Core.Indexers.Newznab
{
public class SizeParsingException : Exception
{
public SizeParsingException(string message) : base(message)
{
}
}
}