Class FileUploadException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.apache.tomcat.util.http.fileupload.FileUploadException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- FileCountLimitExceededException,- InvalidContentTypeException,- IOFileUploadException,- SizeException
Exception for errors encountered while processing the request.
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionConstructs a newFileUploadExceptionwithout message.Constructs a newFileUploadExceptionwith specified detail message.FileUploadException(String msg, Throwable cause) Creates a newFileUploadExceptionwith 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- 
FileUploadExceptionpublic FileUploadException()Constructs a newFileUploadExceptionwithout message.
- 
FileUploadExceptionConstructs a newFileUploadExceptionwith specified detail message.- Parameters:
- msg- the error message.
 
- 
FileUploadExceptionCreates a newFileUploadExceptionwith the given detail message and cause.- Parameters:
- msg- The exceptions detail message.
- cause- The exceptions cause.
 
 
-