static Throwable getInnerException(Throwable e) {
  if (e == null) null;
  while (e.getCause() != null)
    e = e.getCause();
  return e;
}

static Throwable getInnerException(Runnable r) {
  ret getInnerException(getException(r));
}