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

com.asayama.gwt.rebind.exceptions.RebindException Maven / Gradle / Ivy

Go to download

Provides GWT utility classes for GWT Angular project. The utility classes have no dependency on AngularJS.

The newest version!
package com.asayama.gwt.rebind.exceptions;



public class RebindException extends RuntimeException {

    private static final long serialVersionUID = 7474984536348014799L;

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy