mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
12 lines
269 B
C#
12 lines
269 B
C#
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Indexers.Newznab
|
|
{
|
|
public class SizeParsingException : NzbDroneException
|
|
{
|
|
public SizeParsingException(string message, params object[] args) : base(message, args)
|
|
{
|
|
}
|
|
}
|
|
}
|