Added single instance policy

This commit is contained in:
kayone
2013-11-25 18:46:12 -08:00
parent 266d1a43d9
commit c219be8c8d
14 changed files with 254 additions and 51 deletions
@@ -4,5 +4,11 @@ namespace NzbDrone.Host
{
public class TerminateApplicationException : ApplicationException
{
public TerminateApplicationException(string reason)
{
Reason = reason;
}
public string Reason { get; private set; }
}
}