Class FileItemInput.ItemSkippedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.apache.commons.fileupload2.core.FileUploadException
org.apache.commons.fileupload2.core.FileItemInput.ItemSkippedException
- All Implemented Interfaces:
Serializable
- Enclosing interface:
- FileItemInput
This exception is thrown, if an attempt is made to read data from the
InputStream, which has been returned by
FileItemInput.getInputStream(), after Iterator.hasNext() has been invoked on the iterator, which created the
FileItemInput.- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final longThe exceptions serial version UID, which is being used when serializing an exception instance. -
Constructor Summary
ConstructorsConstructorDescriptionItemSkippedException(String message) Constructs an instance with a given detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDThe exceptions serial version UID, which is being used when serializing an exception instance.- See Also:
-
-
Constructor Details
-
ItemSkippedException
ItemSkippedException(String message) Constructs an instance with a given detail message.- Parameters:
message- The detail message (which is saved for later retrieval by theThrowable.getMessage()method)
-