Searched refs:throwableToString (Results 1 – 2 of 2) sorted by relevance
167 writer.println(throwableToString(failure)); in throwablesToString()177 static String throwableToString(Throwable failure) { in throwableToString() method in AggregateException178 return throwableToString(failure, /* depth= */ 1); in throwableToString()181 private static String throwableToString(Throwable failure, int depth) { in throwableToString() method in AggregateException188 return message + "\nCaused by: " + throwableToString(cause, depth + 1); in throwableToString()
81 assertThat(AggregateException.throwableToString(throwable)) in throwableToString_maxCauseDepthCutoff()