1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00
Sonarr/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-13 22:25:53 -07:00
using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Indexers.Newznab
{
2013-08-13 22:25:53 -07:00
public class SizeParsingException : NzbDroneException
{
2013-08-13 22:25:53 -07:00
public SizeParsingException(string message, params object[] args) : base(message, args)
{
}
}
}