Package io.objectbox.reactive
Interface ErrorObserver
-
public interface ErrorObserver
Exceptions thrown inDataObserver
and @DataTransformer
can be observed by an error observer set viaSubscriptionBuilder.onError(ErrorObserver)
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onError(java.lang.Throwable th)
Called when an exception was thrown.
-