swh:1:snp:a4c99a50dc49f82b591f268001b320f8c3ca0041
Raw File
Tip revision: e3fb24ebd97f7686caee78bcef4e558b908a465e authored by jmc on 01 December 2007, 00:00:00 UTC
version 0.97-1
Tip revision: e3fb24e
handlers.R
## calling handlers

recoverHandler <- function(condition) {
    string1 <- function(what) if(length(what) > 1) paste(what[[1]], "...") else what
    message("Recover being started from a condition of class \"",
            string1(class(condition)), "\":\n", conditionMessage(condition),
            "\nCalled from: ", string1(deparse(conditionCall(condition))))
    recover()
}
back to top