(final Throwable ex)
| 784 | |
| 785 | final Responder<T> r = new Responder<T>() { |
| 786 | @Override |
| 787 | public final void onException(final Throwable ex) { |
| 788 | p.setException(ex); |
| 789 | } |
| 790 | |
| 791 | @Override |
| 792 | public final void onValue(final T value) { |
nothing calls this directly
no test coverage detected