zak.taccardi
08/08/2017, 7:13 PMonError
vs wrapping it in an OnErrorNotImplementedException(throwable)
?
// #1
stream.subscribe(
{ }, //onNext
{ throwable -> throw throwable }
)
// #2
stream.subscribe(
{ }, //onNext
{ throwable -> throw OnErrorNotImplementedException(throwable) }
)
Why should I use #2 over #1?