Example usage for com.google.gwt.event.dom.client ErrorHandler onError

List of usage examples for com.google.gwt.event.dom.client ErrorHandler onError

Introduction

In this page you can find the example usage for com.google.gwt.event.dom.client ErrorHandler onError.

Prototype

void onError(ErrorEvent event);

Source Link

Document

Called when ErrorEvent is fired.

Usage

From source file:com.google.code.gwt.html5.media.client.event.ErrorEvent.java

License:Apache License

@Override
protected void dispatch(ErrorHandler handler) {
    handler.onError(this);
}