1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/NzbDrone.Core/Indexers/Newznab/SizeParsingException.cs
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)
{
}
}
}