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 Summary
ConstructorDescriptionConstructs a newFileUploadException
without message.Constructs a newFileUploadException
with specified detail message.FileUploadException
(String msg, Throwable cause) Creates a newFileUploadException
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
public FileUploadException()Constructs a newFileUploadException
without message. -
FileUploadException
Constructs a newFileUploadException
with specified detail message.- Parameters:
msg
- the error message.
-
FileUploadException
Creates a newFileUploadException
with the given detail message and cause.- Parameters:
msg
- The exceptions detail message.cause
- The exceptions cause.
-