@SuppressWarnings("unused") @Subscribe public void onError(SubscriberExceptionEvent event) { event.throwable.printStackTrace(); }
@Subscribe(sticky = true) public void onEvent(SubscriberExceptionEvent event){ if(event != null){ event.throwable.printStackTrace(); } }
@Subscribe public void onEvent(SubscriberExceptionEvent exceptionEvent) { Timber.e(exceptionEvent.throwable, "events"); }