Home | History | Annotate | Download | only in answers

Lines Matching refs:throwable

17     private final Throwable throwable;

20 public ThrowsException(Throwable throwable) {
21 this.throwable = throwable;
24 public Object answer(InvocationOnMock invocation) throws Throwable {
25 if (new MockUtil().isMock(throwable)) {
26 throw throwable;
28 Throwable t = throwable.fillInStackTrace();
33 public Throwable getThrowable() {
34 return throwable;