2013-08-16 02:20:54 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Host
|
|
|
|
|
{
|
|
|
|
|
public class TerminateApplicationException : ApplicationException
|
|
|
|
|
{
|
2013-11-26 02:46:12 +00:00
|
|
|
|
public TerminateApplicationException(string reason)
|
|
|
|
|
{
|
|
|
|
|
Reason = reason;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Reason { get; private set; }
|
2013-08-16 02:20:54 +00:00
|
|
|
|
}
|
|
|
|
|
}
|