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