Description Usage Arguments Value See Also Examples
An S3 method to extract the package in which an Exception occurred. Can be applied to any Exception derived object, but there is no default version.
1 2 3 4 | exceptionPackage(e, ...)
## S3 method for class 'Exception'
exceptionPackage(e, ...)
|
e |
The Exception object to query |
... |
Future-proof the S3 generic method; not used here. |
The package where the Exception
was generated.
1 2 3 4 5 | e <- Exception()
package <- exceptionPackage(e)
e <- IOException()
package <- exceptionPackage(e)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.