ff (version 4.0.5)

geterror.ff: Get error and error string

Description

Get last error code and error string that occured on an ff object.

Usage

geterror.ff(x)
geterrstr.ff(x)

Arguments

x

an ff object

Value

geterror.ff returns an error integer code (no error = 0) and geterrstr.ff returns the error message (no error = "no error").

See Also

ff

Examples

Run this code
# NOT RUN {
  x <- ff(1:12)
  geterror.ff(x)
  geterrstr.ff(x)
  rm(x); gc()
# }

Run the code above in your browser using DataCamp Workspace