No.
Internally errors are caught implicitly.
Here is a good example, give it a swing yourself! (Source)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { throwError, of, Observable } from 'rxjs'; | |
import { catchError, map } from 'rxjs/operators'; | |
const exampleOne$ = new Observable(subscriber => { | |
throw new Error('thrown'); | |
}); | |
exampleOne$.pipe( | |
catchError(val => of(`Exmaple One ${val}`)) | |
).subscribe(console.log); // Exmaple One Error: thrown | |
const exampleTwo$ = new Observable(subscriber => { | |
try { | |
throw new Error('native error') | |
} | |
catch (e) { | |
subscriber.error(e); | |
} | |
}); | |
exampleTwo$.pipe( | |
catchError(val => of(`Example Two ${val}`)) | |
).subscribe(console.log); // Example Two Error: thrown |
No comments:
Post a Comment