com.topologi.diffx.load
Class LoadingException

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

public final class LoadingException
extends DiffXException

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

Version:
3 February 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 occuring 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 occuring exception.
 
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 occuring exception.

Parameters:
ex - The exception to be wrapped.

LoadingException

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

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