fixed Ajax errors not being displayed in the UI.

This commit is contained in:
Keivan Beigi 2013-07-05 16:53:05 -07:00
commit 32d6909045
11 changed files with 134 additions and 52 deletions

View file

@ -0,0 +1,13 @@
using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Qualities
{
public class QualityProfileInUseException : NzbDroneException
{
public QualityProfileInUseException(int profileId)
: base("QualityProfile [{0}] is in use.", profileId)
{
}
}
}