Example usage for com.google.gwt.core.shared SerializableThrowable setDesignatedType

List of usage examples for com.google.gwt.core.shared SerializableThrowable setDesignatedType

Introduction

In this page you can find the example usage for com.google.gwt.core.shared SerializableThrowable setDesignatedType.

Prototype

public void setDesignatedType(String typeName, boolean isExactType) 

Source Link

Document

Sets the designated Throwable's type name.

Usage

From source file:fr.onevu.gwt.uibinder.core.shared.impl.ThrowableTypeResolver.java

License:Apache License

public static void resolveDesignatedType(SerializableThrowable throwable, Throwable designated) {
    throwable.setDesignatedType(designated.getClass().getName(), true);
}