R/stop.R

Defines functions stop_rgcca

stop_rgcca <- function(...,
                       exit_code = "1",
                       call = NULL) {
  base::stop(
    structure(
      class = c(exit_code, "simpleError", "error", "condition"),
      list(message = paste0(...), call. = NULL)
    )
  )
}

Try the RGCCA package in your browser

Any scripts or data that you put into this service are public.

RGCCA documentation built on Oct. 9, 2023, 5:09 p.m.