7.9`ANY`
ANY means essentially:
catch everything handleable
Example:
<on-error-propagate type="ANY">
Useful as the final fallback.
But don't design everything as:
ANY
→ return 500
because then you throw away useful semantics.
ANY means essentially:
catch everything handleable
Example:
<on-error-propagate type="ANY">
Useful as the final fallback.
But don't design everything as:
ANY
→ return 500
because then you throw away useful semantics.