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:
java.io.Serializable
public class FileUploadFileCountLimitException extends FileUploadSizeException
Signals that a request contains more files than the specified limit.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FileUploadFileCountLimitException(java.lang.String message, long limit, long actual)Constructs an instance.
-
Method Summary
-
Methods inherited from class org.apache.commons.fileupload2.core.FileUploadSizeException
getActualSize, getPermitted
-
-
-
-
Constructor Detail
-
FileUploadFileCountLimitException
public FileUploadFileCountLimitException(java.lang.String message, long limit, long actual)
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.
-
-