MCPcopy Create free account
hub / github.com/GateNLP/gate-core / printStackTrace

Method printStackTrace

src/main/java/gate/util/Tools.java:248–253  ·  view source on GitHub ↗

Prints the stack trace of the current thread to the specified print stream. @param pStream

(PrintStream pStream)

Source from the content-addressed store, hash-verified

246 * @param pStream
247 */
248 public static final void printStackTrace(PrintStream pStream){
249 StackTraceElement stackTraceElems[] = Thread.currentThread().getStackTrace();
250 for(StackTraceElement ste : stackTraceElems){
251 pStream.println(ste.toString());
252 }
253 }
254} // class Tools

Callers 15

mainMethod · 0.45
mainMethod · 0.45
testLotsOfThingsMethod · 0.45
mainMethod · 0.45
testMethod · 0.45
mainMethod · 0.45
WaitDialogMethod · 0.45
errorMethod · 0.45
warningMethod · 0.45
runMethod · 0.45
initGuiComponentsMethod · 0.45
mainMethod · 0.45

Calls 2

toStringMethod · 0.65
printlnMethod · 0.45

Tested by 5

mainMethod · 0.36
mainMethod · 0.36
testLotsOfThingsMethod · 0.36
mainMethod · 0.36
testMethod · 0.36