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

com.topologi.diffx.load.LoadingException 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.load;

import com.topologi.diffx.DiffXException;

/**
 * Class of exceptions occuring when trying to load data for Diff-X.
 * 
 * @author Christophe Lauret
 * @version 3 February 2005
 */
public final class LoadingException extends DiffXException {

  /**
   * Creates a new Loading exception.
   */
  public LoadingException() {
    super();
  }

  /**
   * Creates a new loading exception with a given message.
   * 
   * @param message The message explaining the exception.
   */
  public LoadingException(String message) {
    super(message);
  }

  /**
   * Creates a new loading exception wrapping an occuring exception.
   * 
   * @param ex The exception to be wrapped.
   */
  public LoadingException(Exception ex) {
    super(ex);
  }

  /**
   * Creates a new loading exception wrapping an occuring exception.
   * 
   * @param message The message explaining the exception.
   * @param ex The exception to be wrapped.
   */
  public LoadingException(String message, Exception ex) {
    super(message, ex);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy