Package com.jk.core.mime
Class InvalidMagicMimeEntryException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.jk.core.mime.InvalidMagicMimeEntryException
- All Implemented Interfaces:
Serializable
This class represents exception thrown when an invalid magic mime entry is
encountered.
This exception is a subclass of Exception
.
This class should be used to indicate situations where a magic mime entry is invalid.
- Version:
- 1.0
- Author:
- Dr. Jalal H. Kiswani
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionThis method constructs a newInvalidMagicMimeEntryException
.InvalidMagicMimeEntryException
(ArrayList<?> mimeMagicEntry) This method constructs a newInvalidMagicMimeEntryException
with the invalid magic mime entry that caused this exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InvalidMagicMimeEntryException
public InvalidMagicMimeEntryException()This method constructs a newInvalidMagicMimeEntryException
. -
InvalidMagicMimeEntryException
This method constructs a newInvalidMagicMimeEntryException
with the invalid magic mime entry that caused this exception.- Parameters:
mimeMagicEntry
- Specifies the invalid magic mime entry that caused the exception.
-