/* 51 */ return str + ": " + getMessage();
/* */ }
/* */
/* */ public static String getStackTrace(Throwable paramThrowable)
/* */ {
/* 59 */ NSMemoryOutputStream localNSMemoryOutputStream = new NSMemoryOutputStream();
/* 60 */ PrintStream localPrintStream = new PrintStream(localNSMemoryOutputStream);
/* 61 */ paramThrowable.printStackTrace(localPrintStream);
/* 62 */ localPrintStream.flush();
/* 63 */ return localNSMemoryOutputStream.getBytesAsString();
/* */ }