You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I remember noticing this long ago, but it seems I never reported it as an issue.
The way the MAIN function is handled in the runtime means we catch and handle X::ParameterMismatch exceptions that get thrown as part of MAIN parameter handling. But... we also wrongly catch and handle other thrown X::ParameterMismatch exceptions that get thrown as part of runningMAIN. This is wrong.
The solution seems involve separating out parameter binding from actually making the call. So that we can put the CATCH on the parameter binding only.
The text was updated successfully, but these errors were encountered:
I remember noticing this long ago, but it seems I never reported it as an issue.
The way the
MAIN
function is handled in the runtime means we catch and handleX::ParameterMismatch
exceptions that get thrown as part ofMAIN
parameter handling. But... we also wrongly catch and handle other thrownX::ParameterMismatch
exceptions that get thrown as part of runningMAIN
. This is wrong.The solution seems involve separating out parameter binding from actually making the call. So that we can put the
CATCH
on the parameter binding only.The text was updated successfully, but these errors were encountered: