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

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

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

import com.googlecode.gwt.test.utils.GwtReflectionUtils;

/**
 * Exception thrown when an error occurs during the manipulation of gwt-test-utils reflection API.
 *
 * @author Gael Lazzari
 * @see GwtReflectionUtils
 */
public class ReflectionException extends GwtTestException {

    private static final long serialVersionUID = -7518261539641239910L;

    public ReflectionException() {
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy