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

org.watertemplate.exception.RenderException Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package org.watertemplate.exception;

import org.watertemplate.Template;

import java.util.Locale;

public class RenderException extends TemplateException {
    public RenderException(Template t, Locale l, Throwable c) {
        super("Error rendering " + t.getClass() + " with locale " + l, c);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy