Retrieves a character vector containing any error messages that were generated
during the last invocation of the following methods:
phrAccumulateLine, phrLoadDatabase,
phrLoadDatabaseString, phrRunAccumulated,
phrRunFile, phrRunString
Usage
phrGetErrorStrings()
Arguments
Value
The error messages as a character vector.
Details
This routine is rarely needed when running interactively since the error
string is displayed when it occurs.
# loaddatabase should failn <- try(phrLoadDatabase("missing.dat"), silent = TRUE)
# if n is non-NULL display error stringif (!is.null(n)) phrGetErrorStrings()