Closed
Description
Currently, many (if not all?) usage of addThrowable
is as follows:
if (errors.addThrowable(ex)) {
// do something with the error case
} else {
RxJavaPlugins.onError(ex);
}
The plugin error call could be inlined into the method call and renamed to tryAddThrowable
to ensure all usage places are updated correctly.