CustomFunctionArgumentsCountException constructor
Implementation
CustomFunctionArgumentsCountException(
this.functionName,
this.expectedCount,
this.gotCount,
) : super(
title: "Function Arguments Missing",
message:
"Function '$functionName' expects $expectedCount argument${expectedCount == 1 ? '' : 's'}, got $gotCount instead.",
);