R/BatchJobsFutureError.R

Defines functions BatchJobsFutureError

Documented in BatchJobsFutureError

#' FutureError class for errors related to BatchJobsFuture:s
#'
#' @param \ldots Arguments passed to \code{\link[future]{FutureError}}
#'
#' @export
#' @importFrom future FutureError
#'
#' @keywords internal
BatchJobsFutureError <- function(...) {
  error <- FutureError(...)
  class(error) <- c("BatchJobsFutureError", class(error))
  error
}

Try the future.BatchJobs package in your browser

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

future.BatchJobs documentation built on Jan. 5, 2021, 1:07 a.m.