Learn R Programming

RestRserve (version 1.2.3)

raise: Interrupts request processing

Description

Interrupts request processing and signals RestRserve to return HTTPError

Usage

raise(x)

Value

None - stops execution of the current expression and executes an error action.

Arguments

x

instance of Response. Can be created using HTTPError. see examples.

See Also

HTTPError Application

Examples

Run this code
# catch exception
res = try(raise(HTTPError$bad_request()), silent = TRUE)
cond = attr(res, "condition")
# response is a valid Response instace
identical(cond$response$body$error, "400 Bad Request")

Run the code above in your browser using DataLab