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
public class DCInputsReaderException extends Exception
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DCInputsReaderException()No-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 Detail
-
DCInputsReaderException
public DCInputsReaderException()
No-args constructor.
-
DCInputsReaderException
public DCInputsReaderException(String message)
Constructor for a given message.- Parameters:
message- diagnostic message.
-
DCInputsReaderException
public DCInputsReaderException(Throwable cause)
Constructor for a given cause.- Parameters:
cause- throwable that caused this exception
-
-