Package org.dspace.app.util
Class SubmissionConfigReaderException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.dspace.app.util.SubmissionConfigReaderException
- All Implemented Interfaces:
Serializable
This is a superclass for exceptions representing a failure when
loading the item submission configuration. E.g., missing mandatory
information, inconsistent data, etc
- Author:
- Andrea Bollini (andrea.bollini at 4science.it)
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNo-args constructor.SubmissionConfigReaderException(String message) Constructor for a given message.SubmissionConfigReaderException(String message, Throwable cause) Constructor to create a new exception wrapping it around another exception.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
-
SubmissionConfigReaderException
public SubmissionConfigReaderException()No-args constructor. -
SubmissionConfigReaderException
Constructor for a given message.- Parameters:
message- diagnostic message.
-
SubmissionConfigReaderException
Constructor for a given cause.- Parameters:
cause- throwable that caused this exception
-
SubmissionConfigReaderException
Constructor to create a new exception wrapping it around another exception.- Parameters:
message- diagnostic message.cause- throwable that caused this exception
-