more nd icons and some spelling fixes

This commit is contained in:
Mark McDowall
2013-08-13 22:25:53 -07:00
parent 3ef9b40754
commit b1e5646d7d
6 changed files with 18 additions and 9 deletions
@@ -2,12 +2,13 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Indexers.Newznab
{
public class SizeParsingException : Exception
public class SizeParsingException : NzbDroneException
{
public SizeParsingException(string message) : base(message)
public SizeParsingException(string message, params object[] args) : base(message, args)
{
}
}