Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 1.44 KB

throw.md

File metadata and controls

43 lines (29 loc) · 1.44 KB

throw

signature: throw(error: any, scheduler: Scheduler): Observable

Emit error on subscription.

Examples

Example 1: Throw error on subscription

( jsBin | jsFiddle )

import { _throw } from 'rxjs/observable/throw';

//emits an error with specified value on subscription
const source = _throw('This is an error!');
//output: 'Error: This is an error!'
const subscribe = source.subscribe({
  next: val => console.log(val),
  complete: () => console.log('Complete!'),
  error: val => console.log(`Error: ${val}`)
});

Related Examples

Additional Resources


📁 Source Code: https://github.com/ReactiveX/rxjs/blob/master/src/internal/observable/throwError.ts