io.github.longyg.export.exception.ExportException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of html-export Show documentation
Show all versions of html-export Show documentation
Export XHTML to OpenXML WordML (docx)
package io.github.longyg.export.exception;
/**
* @author longyg
*/
public class ExportException extends Exception {
public ExportException(Throwable e) {
super(e);
}
public ExportException(String msg, Throwable e) {
super(msg, e);
}
}