final RuntimeException exception1 = new RuntimeException("first exception");
final RuntimeException exception2 = new RuntimeException("second exception");
final CountingReceiver count = new CountingReceiver();
SimpleFooRequest context = req.simpleFooRequest();
context.returnNullString().to(count);
// 42 is the crash causing magic number for a runtime exception
context.pleaseCrash(42).to(new ThrowingReceiver<Void>(exception1));
context.returnNullString().to(count);
fireContextAndCatch(context, new ThrowingReceiver<Void>(exception2), new ExceptionVerifier() {