Skip to content

Commit 5e32191

Browse files
committedFeb 7, 2019
docs: mention of wrapped request errors
fixes #262
1 parent 18c838a commit 5e32191

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,7 @@ Consider Request-Promise being:
277277
- Plus some methods on a request call object:
278278
- `rp(...).then(...)` or e.g. `rp.post(...).then(...)` which turn `rp(...)` and `rp.post(...)` into promises
279279
- `rp(...).catch(...)` or e.g. `rp.del(...).catch(...)` which is the same method as provided by Bluebird promises
280+
- Errors that the `request` library would pass to the callback are wrapped by `request-promise` and then passed to the catch handler. See [code example](https://github.com/request/request-promise#thenonfulfilled-onrejected) below.
280281
- `rp(...).finally(...)` or e.g. `rp.put(...).finally(...)` which is the same method as provided by Bluebird promises
281282
- `rp(...).cancel()` or e.g. `rp.get(...).cancel()` which cancels the request
282283
- `rp(...).promise()` or e.g. `rp.head(...).promise()` which returns the underlying promise so you can access the full [Bluebird API](https://github.com/petkaantonov/bluebird/blob/master/API.md)

0 commit comments

Comments
 (0)
Please sign in to comment.