Home | History | Annotate | Download | only in lang

Lines Matching defs:re

27         RuntimeException re = new RuntimeException(message, npe);
28 assertEquals(message, re.getMessage());
29 assertEquals(npe, re.getCause());
31 re = new RuntimeException(null, npe);
32 assertNull(re.getMessage());
34 re = new RuntimeException(message, null);
35 assertNull(re.getCause());
40 RuntimeException re = new RuntimeException(npe);
41 assertEquals(npe, re.getCause());
43 re = new RuntimeException((Throwable) null);
44 assertNull(re.getCause());