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

de.quinscape.spring.jsview.JsViewException Maven / Gradle / Ivy

Go to download

Spring-jsview is a flexible Spring WebMVC frontend view implementation with data injection.

There is a newer version: 1.0
Show newest version
package de.quinscape.spring.jsview;

/**
 * Generic js view exception.
 */
public class JsViewException
    extends RuntimeException
{
    private static final long serialVersionUID = -2182329097363811164L;


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


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


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


    public JsViewException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
    {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy