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)
Creates a new InvalidParsedExpressionArgumentCountException instance.
public InvalidParsedExpressionArgumentCountException(int actual, int expected, string paramName)
Parameters
actual
intProvided number of arguments.
expected
intExpected number of arguments.
paramName
stringException's parameter name.
Properties
Actual
Provided number of arguments.
public int Actual { get; }
Property Value
Expected
Expected number of arguments.
public int Expected { get; }