Package org.dspace.app.util
Class DCInputsReaderException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.dspace.app.util.DCInputsReaderException
- All Implemented Interfaces:
Serializable
This is a superclass for exceptions representing a failure when
importing or exporting a package. E.g., unacceptable package format
or contents. Implementations should throw one of the more specific
exceptions. This class is intended for declarations and catch clauses.
- Version:
- $Revision: 3761 $
- Author:
- Larry Stone
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNo-args constructor.DCInputsReaderException(String message) Constructor for a given message.DCInputsReaderException(String message, Throwable cause) Constructor to create a new exception wrapping it around another exception.DCInputsReaderException(Throwable cause) Constructor for a given cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DCInputsReaderException
public DCInputsReaderException()No-args constructor. -
DCInputsReaderException
Constructor for a given message.- Parameters:
message- diagnostic message.
-
DCInputsReaderException
Constructor for a given cause.- Parameters:
cause- throwable that caused this exception
-
DCInputsReaderException
Constructor to create a new exception wrapping it around another exception.- Parameters:
message- diagnostic message.cause- throwable that caused this exception
-