Package org.apache.commons.fileupload
Class FileUploadBase.FileUploadIOException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.apache.commons.fileupload.FileUploadBase.FileUploadIOException
- All Implemented Interfaces:
Serializable
- Enclosing class:
FileUploadBase
Signals that a FileUpload I/O exception of some sort has occurred. This class is the general class of exceptions produced by failed or interrupted
FileUpload I/O operations.
This exception wraps a
FileUploadException
.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates aFileUploadIOException
with the 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
-
FileUploadIOException
Creates aFileUploadIOException
with the given cause.- Parameters:
cause
- The exceptions cause, if any, or null.
-