condition <- function(message, ..., class = NULL, call = NULL){
structure(
list(
message = as.character(message),
call = call,
...),
class = union(class, c("condition"))
)
}
error <- function(message, ..., class = NULL, call = NULL){
structure(
list(
message = as.character(message),
call = call,
...),
class = union(class, c("error", "condition"))
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.