Files
runner/src/Sdk/Expressions/ParseExceptionKind.cs
T

14 lines
318 B
C#
Raw Normal View History

2025-11-07 14:18:52 -06:00
namespace GitHub.Actions.Expressions
{
internal enum ParseExceptionKind
{
ExceededMaxDepth,
ExceededMaxLength,
TooFewParameters,
TooManyParameters,
UnexpectedEndOfExpression,
UnexpectedSymbol,
UnrecognizedFunction,
UnrecognizedNamedValue,
}
}