mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
16 lines
355 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|