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