R/stop2.R

Defines functions warning2 stop2

# identical to stop(), but these strings should not be translated
stop2 <- function(..., call. = TRUE, domain = NA) {
  stop(..., call. = call., domain = domain)
}

# identical to warning(), but these strings should not be translated
warning2 <- function(..., call. = TRUE, immediate. = FALSE, noBreaks. = FALSE, domain = NA) {
  warning(..., call. = call., immediate. = immediate., noBreaks. = noBreaks., domain = domain)
}
jasp-stats/jaspGraphs documentation built on May 5, 2024, 10:44 p.m.