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

com.googlecode.gwt.test.gin.GwtTestGinException Maven / Gradle / Ivy

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

import com.googlecode.gwt.test.exceptions.GwtTestException;

/**
 * Exception thrown when gwt-test-utils detects an error in a google-gin configuration
 *
 * @author Gael Lazzari
 */
public class GwtTestGinException extends GwtTestException {

    private static final long serialVersionUID = 3271039561760563185L;

    /**
     *
     */
    public GwtTestGinException() {
    }

    /**
     * @param message
     */
    public GwtTestGinException(String message) {
        super(message);
    }

    /**
     * @param message
     * @param cause
     */
    public GwtTestGinException(String message, Throwable cause) {
        super(message, cause);
    }

    /**
     * @param cause
     */
    public GwtTestGinException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy