Class DiffXException

java.lang.Object
java.lang.Throwable
java.lang.Exception
com.topologi.diffx.DiffXException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
FactoryException, LoadingException

public class DiffXException extends Exception
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.

Version:
27 March 2010
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      As per requirement by the Serializable interface.
      See Also:
  • Constructor Details

    • DiffXException

      public DiffXException()
      Creates a new Diff-X exception.
    • DiffXException

      public DiffXException(String message)
      Creates a new Diff-X exception with a given message.
      Parameters:
      message - The message explaining the exception.
    • DiffXException

      public DiffXException(Exception ex)
      Creates a new Diff-X exception wrapping an occurring exception.
      Parameters:
      ex - The exception to be wrapped.
    • DiffXException

      public DiffXException(String message, Exception ex)
      Creates a new Diff-X exception wrapping an occurring exception.
      Parameters:
      message - The message explaining the exception.
      ex - The exception to be wrapped.