org.wickedsource.docxstamper.api.UnresolvedExpressionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docx-stamper Show documentation
Show all versions of docx-stamper Show documentation
Template engine for .docx documents.
package org.wickedsource.docxstamper.api;
public class UnresolvedExpressionException extends DocxStamperException {
public UnresolvedExpressionException(String expression, Throwable cause) {
super(String.format("The following expression could not be processed by any comment processor: %s", expression), cause);
}
}