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

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

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

import com.google.gwt.resources.client.ClientBundle;

/**
 * Exception thrown when an error occurs during a GWT resources emulation.
 *
 * @author Gael Lazzari
 * @see ClientBundle
 */
public class GwtTestResourcesException extends GwtTestException {

    private static final long serialVersionUID = -7518261539641239910L;

    public GwtTestResourcesException() {
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy