Skip to content

Instantly share code, notes, and snippets.

@Ibro
Last active April 29, 2017 04:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ibro/ecd98c37b0a8f6b68c5421320c53d781 to your computer and use it in GitHub Desktop.
Save Ibro/ecd98c37b0a8f6b68c5421320c53d781 to your computer and use it in GitHub Desktop.
RxJS - Error Handling - Coding Blast - www.codingblast.com
import {Observable} from 'rxjs';
Observable
.of('CodingBlast', 'cuteword', 'badword', 'coding', 'blast')
.map(w => {
if (w === 'badword') {
throw new Error('Bad things happen!')
}
return w + ' RxJS';
})
.catch(err => Observable.of('continue please'))
.subscribe(value => console.log(value),
err => console.error('oops, an error!', err),
() => console.log('complete!'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment