• Alex Navasardyan's avatar
    Adding RSVP#rethrow · 2e98c2d0
    Alex Navasardyan authored
    Rethrow makes sure that any exception in your promise chain won't
    swallowed:
    
    getJSON('/posts.json')
        .then(handlePost)
        .fail(RSVP.rethrow)
    
    You can also to chain it further, like so:
    
    getJSON('/posts.json')
        .then(handlePost)
        .fail(RSVP.rethrow)
        .then(null, handleRejection)
    2e98c2d0
README.md 7.34 KB