List of usage examples for com.google.gwt.core.client.impl StackTraceCreator fillInStackTrace
public static void fillInStackTrace(Throwable t)
From source file:java.lang.Throwable.java
License:Apache License
/** * Populates the stack trace information for the Throwable. * // w w w .j a v a 2s . com * @return this */ public Throwable fillInStackTrace() { StackTraceCreator.fillInStackTrace(this); return this; }