RxJS - Operatore di creazione throwError

Questo operatore creerà un osservabile che notificherà un errore.

Sintassi

throwError(error: any): Observable

Parametri

error - L'argomento che l'operatore accetta è l'errore che devi notificare.

Valore di ritorno

Restituisce un osservabile che notificherà un errore.

Esempio

import { throwError, concat, of } from 'rxjs';

const result =throwError(new Error('error occurred'));
result.subscribe(x => console.log(x), e => console.error(e));

Produzione