static L allCausesIncludingSelf(Throwable t) { new L out; while (t != null) { out.add(t); t = t.getCause(); } ret out; }