Class ParsedExpressionCreationException
- Namespace
- LfrlAnvil.Computable.Expressions.Exceptions
- Assembly
- LfrlAnvil.Computable.Expressions.dll
Represents an error that occurred during an attempt to create an IParsedExpression<TArg, TResult> instance.
public class ParsedExpressionCreationException : InvalidOperationException, ISerializable
- Inheritance
-
ParsedExpressionCreationException
- Implements
- Inherited Members
Constructors
ParsedExpressionCreationException(string, Chain<ParsedExpressionBuilderError>)
Creates a new ParsedExpressionCreationException instance.
public ParsedExpressionCreationException(string input, Chain<ParsedExpressionBuilderError> errors)
Parameters
input
stringParsed input.
errors
Chain<ParsedExpressionBuilderError>Collection of underlying errors.
Properties
Errors
Collection of underlying errors.
public Chain<ParsedExpressionBuilderError> Errors { get; }
Property Value
Input
Parsed input.
public string Input { get; }