com.x5.template.SnippetError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chunk-templates Show documentation
Show all versions of chunk-templates Show documentation
Chunk Template Engine for Java
package com.x5.template;
import java.io.Writer;
public class SnippetError extends SnippetPart
{
public SnippetError(String errMsg)
{
super(errMsg);
super.setLiteral(true);
}
public void render(Writer out, Chunk rules, String origin, int depth)
throws java.io.IOException
{
if (rules == null || rules.renderErrorsToOutput()) {
out.append(snippetText);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy