Home | History | Annotate | Download | only in listeners

Lines Matching refs:throwable

17     private Throwable throwable;

37 * @param throwable Tha throwable raised by the method invocation
39 public NotifiedMethodInvocationReport(Invocation invocation, Throwable throwable) {
41 this.throwable = throwable;
52 public Throwable getThrowable() {
53 return throwable;
57 return throwable != null;
74 if (throwable != null ? !throwable.equals(that.throwable) : that.throwable != null) return false;
82 result = 31 * result + (throwable != null ? throwable.hashCode() : 0);