Class SizeLimitExceededException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.apache.tomcat.util.http.fileupload.FileUploadException
org.apache.tomcat.util.http.fileupload.impl.SizeException
org.apache.tomcat.util.http.fileupload.impl.SizeLimitExceededException
- All Implemented Interfaces:
- Serializable
Thrown to indicate that the request size exceeds the configured maximum.
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionSizeLimitExceededException(String message, long actual, long permitted) Constructs aSizeExceededExceptionwith the specified detail message, and actual and permitted sizes.
- 
Method SummaryMethods inherited from class org.apache.tomcat.util.http.fileupload.impl.SizeExceptiongetActualSize, getPermittedSizeMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
SizeLimitExceededExceptionConstructs aSizeExceededExceptionwith the specified detail message, and actual and permitted sizes.- Parameters:
- message- The detail message.
- actual- The actual request size.
- permitted- The maximum permitted request size.
 
 
-