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

com.googlecode.gwt.test.finder.GwtFinderException Maven / Gradle / Ivy

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

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

public class GwtFinderException extends GwtTestException {

    private static final long serialVersionUID = 7293766392294842161L;

    public GwtFinderException() {
    }

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy