I\'m trying to use resolvers in order to make a better UX. Everything works great on the happy path. What I can\'t seem to figure out is how to handle exceptions. My resolver ca
You need to return an observable that completes with false
false
handleError() { return Observable.of([false]); }