All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.gwt.test.exceptions.GwtTestUiBinderException Maven / Gradle / Ivy

There is a newer version: 0.63
Show newest version
package com.googlecode.gwt.test.exceptions;

/**
 * Exception thrown when an error occurs during the UiBinder patching mechanism.
 *
 * @author Gael Lazzari
 */
public class GwtTestUiBinderException extends GwtTestPatchException {

    private static final long serialVersionUID = -5030059458747698751L;

    public GwtTestUiBinderException() {
    }

    public GwtTestUiBinderException(String message) {
        super(message);
    }

    public GwtTestUiBinderException(String message, Throwable cause) {
        super(message, cause);
    }

    public GwtTestUiBinderException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy