mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
fixed Ajax errors not being displayed in the UI.
This commit is contained in:
parent
b79f695564
commit
32d6909045
11 changed files with 134 additions and 52 deletions
13
NzbDrone.Core/Qualities/QualityProfileInUseException.cs
Normal file
13
NzbDrone.Core/Qualities/QualityProfileInUseException.cs
Normal 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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue