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,26 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Common.Exceptions
{
public abstract class NzbDroneException : ApplicationException
{
protected NzbDroneException(string message, params object[] args)
: base(string.Format(message, args))
{
}
protected NzbDroneException(string message)
: base(message)
{
}
}
}