Nothing
Code
fatal_error(c("error", "with", "bullets", "", i = "and notes"))
Condition
Error in `fatal_error()`:
! error
with
bullets
i and notes
x fatal error
Output
<error/precondition/fatal_error>
Error in `fatal_error()`:
! error
with
bullets
i and notes
! an error raised by `fatal_error()` was handled in `tryCatch()`
i fatal errors indicate critical failures in the program
i and should typically abort the program execution
i use `option(fatal_error_action = "none")` to silence this message
i see ?precondition_fatal_error_action
Code
tryCatch(fatal_error(c("error", "with", "bullets", "", i = "and notes")),
error = function(...) NULL)
Output
<error/precondition/fatal_error>
Error in `fatal_error()`:
! error
with
bullets
i and notes
! an error raised by `fatal_error()` was handled in `tryCatch()`
i fatal errors indicate critical failures in the program
i and should typically abort the program execution
i use `option(fatal_error_action = "none")` to silence this message
i see ?precondition_fatal_error_action
NULL
Code
fatal_error(c("error", "with", "bullets", "", i = "and notes"))
Condition
Error in `fatal_error()`:
! error
with
bullets
i and notes
x fatal error
Output
<error/precondition/fatal_error>
Error in `fatal_error()`:
! error
with
bullets
i and notes
! an error raised by `fatal_error()` was handled in `tryCatch()`
i fatal errors indicate critical failures in the program
i and should typically abort the program execution
i use `option(fatal_error_action = "none")` to silence this message
i see ?precondition_fatal_error_action
Code
tryCatch(fatal_error(c("error", "with", "bullets", "", i = "and notes")),
error = function(...) NULL)
Output
<error/precondition/fatal_error>
Error in `fatal_error()`:
! error
with
bullets
i and notes
! an error raised by `fatal_error()` was handled in `tryCatch()`
i fatal errors indicate critical failures in the program
i and should typically abort the program execution
i use `option(fatal_error_action = "none")` to silence this message
i see ?precondition_fatal_error_action
NULL
Code
fatal_error(c("error", "with", "bullets", "", i = "and notes"))
Condition
Error in `fatal_error()`:
! error
with
bullets
i and notes
x fatal error
Code
fatal_error(c("error", "with", "bullets", "", i = "and notes"))
Output
<error/precondition/fatal_error>
Error in `fatal_error()`:
! error
with
bullets
i and notes
x fatal error, execution halted
Condition
Error in `quit()`:
! quit() called
Code
tryCatch(fatal_error(c("error", "with", "bullets", "", i = "and notes")),
error = function(cnd) {
if (inherits(cnd, "modular/quit_action")) rlang::cnd_signal(cnd)
NULL
})
Output
<error/precondition/fatal_error>
Error in `fatal_error()`:
! error
with
bullets
i and notes
x fatal error, execution halted
Condition
Error in `quit()`:
! quit() called
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.