The ParameterCountMismatchError class contains the following constructors:
ParameterCountMismatchError()
ParameterCountMismatchError(int expected, int passed)
Constructs a ParameterCountMismatchError object.
public ParameterCountMismatchError();
Constructs a ParameterCountMismatchError object from the number of parameters passed and the number of parameters expected.
public ParameterCountMismatchError(int expected, int passed);
expected | The number of parameters expected. |
passed | The number of parameters actually passed. |