Class FileUploadFileCountLimitException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.apache.commons.fileupload2.core.FileUploadException
org.apache.commons.fileupload2.core.FileUploadSizeException
org.apache.commons.fileupload2.core.FileUploadFileCountLimitException
- All Implemented Interfaces:
Serializable
Signals that a request contains more files than the specified limit.
- See Also:
-
Constructor Summary
ConstructorDescriptionFileUploadFileCountLimitException
(String message, long limit, long actual) Constructs an instance. -
Method Summary
Methods inherited from class org.apache.commons.fileupload2.core.FileUploadSizeException
getActualSize, getPermitted
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FileUploadFileCountLimitException
Constructs an instance.- Parameters:
message
- The detail message (which is saved for later retrieval by theThrowable.getMessage()
method)limit
- The limit that was exceeded.actual
- The actual value.
-