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

org.jbake.template.RenderingException Maven / Gradle / Ivy

Go to download

JBake is a Java based open source static site/blog generator for developers.

There is a newer version: 2.7.0-rc.7
Show newest version
package org.jbake.template;

/**
 * Thrown if rendering of a document failed.
 *
 * @author Cédric Champeau
 */
public class RenderingException extends Exception {
    public RenderingException(final Throwable cause) {
        super(cause);
    }

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

    public RenderingException(final String message) {
        super(message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy