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

org.neogroup.warp.views.ViewException Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version

package org.neogroup.warp.views;

/**
 * Exception for views
 */
public class ViewException extends RuntimeException {

    /**
     * Constructor for a view exception
     */
    public ViewException() {
    }

    /**
     * Constructor for a view exception
     * @param message message
     */
    public ViewException(String message) {
        super(message);
    }

    /**
     * Constructor for a view exception
     * @param message message
     * @param cause cause
     */
    public ViewException(String message, Throwable cause) {
        super(message, cause);
    }

    /**
     * Constructor for a view exception
     * @param cause cause
     */
    public ViewException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy