All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.topologi.diffx.DiffXException Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 6.1.2
Show newest version
package com.topologi.diffx;

/**
 * The mother of all Diff-X exceptions.
 * 
 * 

This class is provided for convenience to distinguish between the purely * DiffX exceptions and exception of a different origin. * * @author Christophe Lauret * @version 3 February 2005 */ public class DiffXException extends Exception { /** * Creates a new Diff-X exception. */ public DiffXException() { super(); } /** * Creates a new Diff-X exception with a given message. * * @param message The message explaining the exception. */ public DiffXException(String message) { super(message); } /** * Creates a new Diff-X exception wrapping an occuring exception. * * @param ex The exception to be wrapped. */ public DiffXException(Exception ex) { super(ex); } /** * Creates a new Diff-X exception wrapping an occuring exception. * * @param message The message explaining the exception. * @param ex The exception to be wrapped. */ public DiffXException(String message, Exception ex) { super(message, ex); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy