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