public void assertCatch(Throwable ex) {
   try {
     Asserts.assertSame(thrown, ex, "must get the out-of-band exception");
   } catch (Throwable t) {
     ex.printStackTrace();
   }
 }