Class FileUploadException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.io.IOException
- 
- org.apache.tomcat.util.http.fileupload.FileUploadException
 
 
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 - Direct Known Subclasses:
- FileCountLimitExceededException,- InvalidContentTypeException,- IOFileUploadException,- SizeException
 
 public class FileUploadException extends java.io.IOExceptionException for errors encountered while processing the request.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description FileUploadException()Constructs a newFileUploadExceptionwithout message.FileUploadException(java.lang.String msg)Constructs a newFileUploadExceptionwith specified detail message.FileUploadException(java.lang.String msg, java.lang.Throwable cause)Creates a newFileUploadExceptionwith the given detail message and cause.FileUploadException(java.lang.Throwable cause)Creates a newFileUploadExceptionwith the given cause.
 
- 
- 
- 
Constructor Detail- 
FileUploadExceptionpublic FileUploadException() Constructs a newFileUploadExceptionwithout message.
 - 
FileUploadExceptionpublic FileUploadException(java.lang.String msg) Constructs a newFileUploadExceptionwith specified detail message.- Parameters:
- msg- the error message.
 
 - 
FileUploadExceptionpublic FileUploadException(java.lang.String msg, java.lang.Throwable cause)Creates a newFileUploadExceptionwith the given detail message and cause.- Parameters:
- msg- The exceptions detail message.
- cause- The exceptions cause.
 
 - 
FileUploadExceptionpublic FileUploadException(java.lang.Throwable cause) Creates a newFileUploadExceptionwith the given cause.- Parameters:
- cause- The exceptions cause.
 
 
- 
 
-