public class RequiredRPackageException extends BioLockJException
RETURN
Constructor and Description |
---|
RequiredRPackageException(Set<String> names,
Map<String,String> repos)
Create exception based on which R packages are missing, and the URLs of repos to download them from.
|
RequiredRPackageException(String rpackage)
Create exception based on which R package is missing.
|
RequiredRPackageException(String rpackage,
String packageRepo)
Create exception based on which R package is missing, and the URL to download it from.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public RequiredRPackageException(String rpackage)
rpackage
- name of an R package that is required but cannot be loadedpublic RequiredRPackageException(String rpackage, String packageRepo)
rpackage
- name of an R package that is required but cannot be loadedpackageRepo
- url of repository that from which the package may be installed.public RequiredRPackageException(Set<String> names, Map<String,String> repos)
names
- Set of Strings given one or more names of packages that are required but cannot be loadedrepos
- Map of package names to url where the package could be installed from.