mirror of
https://github.com/actions/runner.git
synced 2025-12-12 15:13:30 +00:00
20 lines
400 B
C#
20 lines
400 B
C#
using System;
|
|
|
|
namespace GitHub.Runner.Common
|
|
{
|
|
public class NonRetryableException : Exception
|
|
{
|
|
public NonRetryableException()
|
|
: base()
|
|
{ }
|
|
|
|
public NonRetryableException(string message)
|
|
: base(message)
|
|
{ }
|
|
|
|
public NonRetryableException(string message, Exception inner)
|
|
: base(message, inner)
|
|
{ }
|
|
}
|
|
}
|