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 Summary
ConstructorDescriptionFileUploadException
(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 Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FileUploadException
Constructs an instance with a given detail message.- Parameters:
message
- The detail message (which is saved for later retrieval by theThrowable.getMessage()
method)
-
FileUploadException
Constructs an instance with the given detail message and cause.- Parameters:
message
- The detail message (which is saved for later retrieval by theThrowable.getMessage()
method)cause
- The cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-