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

com.google.gwt.emul.java.lang.ReflectiveOperationException Maven / Gradle / Ivy

The newest version!

package java.lang;

/**
 * Common superclass of exceptions thrown by reflective operations reflection.
 */
public class ReflectiveOperationException extends Exception {
    static final long serialVersionUID = 123456789L;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy