pengembalian sudut dapat diamati dengan kesalahan

import { throwError } from 'rxjs';

// ...
method(): Observable<SomeClass> {
  // ...
  // from the 
  if (failedCondition) {
    return throwError('');
  }
  // ...
}
Scriper