Class FileCountLimitExceededException
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.FileCountLimitExceededException
- All Implemented Interfaces:
- Serializable
This exception is thrown if a request contains more files than the specified
 limit.
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionFileCountLimitExceededException(String message, long limit) Creates a new instance.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
FileCountLimitExceededExceptionCreates a new instance.- Parameters:
- message- The detail message
- limit- The limit that was exceeded
 
 
- 
- 
Method Details- 
getLimitpublic long getLimit()Retrieves the limit that was exceeded.- Returns:
- The limit that was exceeded by the request
 
 
-