Files
runner/src/Runner.Common/Exceptions.cs
2019-10-10 00:52:42 -04:00

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)
{ }
}
}