mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
14 lines
288 B
C#
14 lines
288 B
C#
using System;
|
|
|
|
namespace NzbDrone.Host
|
|
{
|
|
public class TerminateApplicationException : ApplicationException
|
|
{
|
|
public TerminateApplicationException(string reason)
|
|
{
|
|
Reason = reason;
|
|
}
|
|
|
|
public string Reason { get; private set; }
|
|
}
|
|
} |