com.topologi.diffx.algorithm.FactoryException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docx4j Show documentation
Show all versions of docx4j Show documentation
docx4j is a library which helps you to work with the Office Open
XML file format as used in docx
documents, pptx presentations, and xlsx spreadsheets.
package com.topologi.diffx.algorithm;
import com.topologi.diffx.DiffXException;
/**
* Class of exceptions thrown when a factory method failed to produce
* the desired object.
*
* @author Christophe Lauret
* @version 3 February 2005
*/
public class FactoryException extends DiffXException {
/**
* Creates a new factory exception wrapping an occuring exception.
*
* @param ex The exception to be wrapped.
*/
public FactoryException(Exception ex) {
super(ex);
}
}