composerr_get_action | R Documentation |
Retrieve the default ultimate error handler of a composerr error handler
composerr_get_action(err_h)
err_h |
An error handler created with |
The default ultimate error processing function
action
assigned to err_h <- composerr(..., action = my_default_action)
.
If err_h
is a child error handler of err_h_parent
has been created without assigning a default ultimate error handler action
,
then the default ultimate error handler assigned to err_h_parent
is returned by the call composerr_get_action(err_h)
.
If err_h_parent
also has no default ultimate error handler assigned to
it, then this process is repeated recursively until the first ancestor
of err_h
is found that has
a non-null default ultimate error handler action
assigned to.
If no default ultimate error handler was assigned for any error handler
in the entire error handler cascade, then stop()
will be the return
value of composerr_get_action(err_h)
.
composerr()
, composerr_flush()
, composerr_halt()
and validate_composerr()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.