mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-14 20:55:37 -04:00
13 lines
282 B
C#
13 lines
282 B
C#
using System;
|
|
|
|
namespace NzbDrone.Host
|
|
{
|
|
public class TerminateApplicationException : ApplicationException
|
|
{
|
|
public TerminateApplicationException(string reason)
|
|
: base("Application is being terminated. Reason : " + reason)
|
|
{
|
|
}
|
|
}
|
|
}
|