Class FileUploadException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.apache.commons.fileupload2.core.FileUploadException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- FileItemInput.ItemSkippedException,- FileUploadContentTypeException,- FileUploadSizeException,- MultipartInput.FileUploadBoundaryException,- MultipartInput.MalformedStreamException
Signals errors encountered while processing the request.
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionFileUploadException(String message) Constructs an instance with a given detail message.FileUploadException(String message, Throwable cause) Constructs an instance with the given detail message and cause.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
FileUploadExceptionConstructs an instance with a given detail message.- Parameters:
- message- The detail message (which is saved for later retrieval by the- Throwable.getMessage()method)
 
- 
FileUploadExceptionConstructs an instance with the given detail message and cause.- Parameters:
- message- The detail message (which is saved for later retrieval by the- Throwable.getMessage()method)
- cause- The cause (which is saved for later retrieval by the- Throwable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
 
 
-