error_push

Pushes current error state.

Target function

Signature

1error_push()

Pushes current error state.

error_push is a global callable that can be used wherever an expression is valid. error_push helps report or recover from failures. Use it to make the expected failure path visible instead of hiding errors in a broad catch.

Examples

Basic call

1error_push
The example shows the normal call shape. Adapt variable names, validation, and surrounding error handling to the context.