Nothing
type_error <- function(msg) {
rlang::abort(msg, class = "type_error")
}
value_error <- function(msg) {
rlang::abort(msg, class = "value_error")
}
runtime_error <- function(msg) {
rlang::abort(msg, class = "runtime_error")
}
not_implemented_error <- function(msg) {
rlang::abort(msg, class = "not_implemented_error")
}
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.