com.topologi.diffx.load
Class LoadingException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.topologi.diffx.DiffXException
              extended by com.topologi.diffx.load.LoadingException
All Implemented Interfaces:
Serializable

public final class LoadingException
extends DiffXException

Class of exceptions occurring when trying to load data for Diff-X.

Version:
14 May 2005
Author:
Christophe Lauret
See Also:
Serialized Form

Constructor Summary
LoadingException()
          Creates a new Loading exception.
LoadingException(Exception ex)
          Creates a new loading exception wrapping an occurring exception.
LoadingException(String message)
          Creates a new loading exception with a given message.
LoadingException(String message, Exception ex)
          Creates a new loading exception wrapping an occurring exception.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

LoadingException

public LoadingException()
Creates a new Loading exception.


LoadingException

public LoadingException(String message)
Creates a new loading exception with a given message.

Parameters:
message - The message explaining the exception.

LoadingException

public LoadingException(Exception ex)
Creates a new loading exception wrapping an occurring exception.

Parameters:
ex - The exception to be wrapped.

LoadingException

public LoadingException(String message,
                        Exception ex)
Creates a new loading exception wrapping an occurring exception.

Parameters:
message - The message explaining the exception.
ex - The exception to be wrapped.