Table of Contents

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 string

Parsed input.

errors Chain<ParsedExpressionBuilderError>

Collection of underlying errors.

Properties

Errors

Collection of underlying errors.

public Chain<ParsedExpressionBuilderError> Errors { get; }

Property Value

Chain<ParsedExpressionBuilderError>

Input

Parsed input.

public string Input { get; }

Property Value

string