Nothing
KeyError <- function(key, namespace, driver) {
structure(list(key = key,
namespace = namespace,
message = sprintf("key '%s' ('%s') not found", key, namespace),
call = NULL),
class = c("KeyError", "error", "condition"))
}
KeyErrorExternal <- function(key, namespace, e) {
msg <- sprintf("key '%s' ('%s') not found, with error: %s",
key, namespace, e$message)
structure(list(key = key,
namespace = namespace,
message = msg,
call = NULL,
error = e),
class = c("KeyErrorExternal", "KeyError", "error", "condition"))
}
HashError <- function(hash, driver) {
structure(list(hash = hash,
message = sprintf("hash '%s' not found", hash),
call = NULL),
class = c("HashError", "error", "condition"))
}
ConfigError <- function(name, prev, requested) {
msg <- sprintf("Incompatible value for %s (existing: %s, requested: %s)",
name, prev, requested)
structure(list(name = name,
prev = prev,
requested = requested,
message = msg,
call = NULL),
class = c("ConfigError", "error", "condition"))
}
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.