Example usage for com.google.gwt.core.client.impl StackTraceCreator fillInStackTrace

List of usage examples for com.google.gwt.core.client.impl StackTraceCreator fillInStackTrace

Introduction

In this page you can find the example usage for com.google.gwt.core.client.impl StackTraceCreator fillInStackTrace.

Prototype

public static void fillInStackTrace(Throwable t) 

Source Link

Document

Fill in a stack trace based on the current execution stack.

Usage

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;
}