InstallUpdate pre-check failures should now show a nice error on the UI.

This commit is contained in:
Taloth Saldono
2015-01-25 21:55:16 +01:00
parent 8833f1ad31
commit 7ce9f416d1
7 changed files with 131 additions and 73 deletions
@@ -0,0 +1,17 @@
using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Update
{
public class UpdateFailedException : NzbDroneException
{
public UpdateFailedException(string message, params object[] args)
: base(message, args)
{
}
public UpdateFailedException(string message)
: base(message)
{
}
}
}