org.wickedsource.docxstamper.api.DocxStamperException 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;
/**
* This exception is thrown when DocxStamper encounters an error.
*/
public class DocxStamperException extends RuntimeException {
public DocxStamperException(String message) {
super(message);
}
public DocxStamperException(String message, Throwable cause) {
super(message, cause);
}
public DocxStamperException(Throwable cause) {
super(cause);
}
}