Skip to content

Instantly share code, notes, and snippets.

@Ibro
Last active April 29, 2017 04:49
Show Gist options
  • Save Ibro/751da28a1a8d54916daef9e22738c8f8 to your computer and use it in GitHub Desktop.
Save Ibro/751da28a1a8d54916daef9e22738c8f8 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.throw('throwing from catch!'))
.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