org.wickedsource.docxstamper.processor.CommentProcessingException 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.processor;
import org.wickedsource.docxstamper.api.DocxStamperException;
import org.wickedsource.docxstamper.api.coordinates.ParagraphCoordinates;
import org.wickedsource.docxstamper.api.coordinates.TableCoordinates;
public class CommentProcessingException extends DocxStamperException {
public CommentProcessingException(String message, ParagraphCoordinates coordinates) {
super(message + "\nCoordinates of offending commented paragraph within the document: \n" + coordinates.toString());
}
public CommentProcessingException(String message, TableCoordinates coordinates) {
super(message + "\nCoordinates of offending commented table within the document: \n" + coordinates.toString());
}
}