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

org.jtwig.renderable.RenderException Maven / Gradle / Ivy

package org.jtwig.renderable;

import org.jtwig.exceptions.JtwigException;

public class RenderException extends JtwigException {
    public RenderException(Throwable cause) {
        super(cause);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy