MCPcopy Create free account
hub / github.com/Aefyr/SAI / throwableToString

Method throwableToString

app/src/main/java/com/aefyr/sai/utils/Utils.java:58–66  ·  view source on GitHub ↗
(Throwable throwable)

Source from the content-addressed store, hash-verified

56 }
57
58 public static String throwableToString(Throwable throwable) {
59 StringWriter sw = new StringWriter(1024);
60 PrintWriter pw = new PrintWriter(sw);
61
62 throwable.printStackTrace(pw);
63 pw.close();
64
65 return sw.toString();
66 }
67
68 @SuppressLint("PrivateApi")
69 @Nullable

Callers 6

execInternalMethod · 0.95
execInternalMethod · 0.95
installApkFilesMethod · 0.95
installApkFilesMethod · 0.95
installMethod · 0.95
installMethod · 0.95

Calls 2

closeMethod · 0.65
toStringMethod · 0.45

Tested by

no test coverage detected