aws_error | R Documentation |
This function generates S3 error objects which are passed to
stop()
to generate classed errors.
These can be used in conjunction with tryCatch()
to respond differently to different types of failure.
aws_error(e, call = sys.call(-1), use_call = FALSE)
e |
An error struct, like ones generated by |
call |
The call stored in the condition object. |
This expands on the condition messages generated by the httr package
in httr::http_condition()
. In addition to error classes like
http_error
, http_400
, and http_404
, this sets attributes
on the error condition that contain the unmarshalled error
response from AWS for the respective service.
An S3 object that inherits from (e.g.) condition, error, http_error, http_400 and http_404.
http://adv-r.had.co.nz/Exceptions-Debugging.html#condition-handling for more details about R's condition handling model https://github.com/r-lib/httr/blob/master/R/response-status.r#L310 for the httr inspiration of this condition
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.