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

com.googlecode.gwt.test.exceptions.GwtTestPatchException 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 bytecode modification of a class to patch.
 *
 * @author Gael Lazzari
 */
public class GwtTestPatchException extends GwtTestException {

    private static final long serialVersionUID = -2055077366596845492L;

    public GwtTestPatchException() {
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy