Is there any way to completely ignore an Error? For example, when I reject a Promise with something like PromiseCancelledError, I don't want the downstream catches to handle this error. I want the Promise to be terminated and produce no output at all. Both catch and recover are not working for this case.
Is there any way to completely ignore an Error? For example, when I reject a Promise with something like
PromiseCancelledError, I don't want the downstreamcatches to handle this error. I want the Promise to be terminated and produce no output at all. Bothcatchandrecoverare not working for this case.