Package com.topologi.diffx.load
Class LoadingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.topologi.diffx.DiffXException
com.topologi.diffx.load.LoadingException
- All Implemented Interfaces:
Serializable
Class of exceptions occurring when trying to load data for Diff-X.
- Version:
- 14 May 2005
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final longVersion number for the serialised class. -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new Loading exception.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
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDVersion number for the serialised class.- See Also:
-
-
Constructor Details
-
LoadingException
public LoadingException()Creates a new Loading exception. -
LoadingException
Creates a new loading exception with a given message.- Parameters:
message- The message explaining the exception.
-
LoadingException
Creates a new loading exception wrapping an occurring exception.- Parameters:
ex- The exception to be wrapped.
-
LoadingException
Creates a new loading exception wrapping an occurring exception.- Parameters:
message- The message explaining the exception.ex- The exception to be wrapped.
-