Table of Contents

Class InvalidParsedExpressionArgumentCountException

Namespace
LfrlAnvil.Computable.Expressions.Exceptions
Assembly
LfrlAnvil.Computable.Expressions.dll

Represents an error that occurred due to an invalid number of arguments during delegate invocation.

public class InvalidParsedExpressionArgumentCountException : ArgumentException, ISerializable
Inheritance
InvalidParsedExpressionArgumentCountException
Implements
Inherited Members

Constructors

InvalidParsedExpressionArgumentCountException(int, int, string)

public InvalidParsedExpressionArgumentCountException(int actual, int expected, string paramName)

Parameters

actual int

Provided number of arguments.

expected int

Expected number of arguments.

paramName string

Exception's parameter name.

Properties

Actual

Provided number of arguments.

public int Actual { get; }

Property Value

int

Expected

Expected number of arguments.

public int Expected { get; }

Property Value

int