Package org.apache.commons.fileupload
Class FileCountLimitExceededException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.commons.fileupload.FileUploadException
-
- org.apache.commons.fileupload.FileCountLimitExceededException
-
- All Implemented Interfaces:
Serializable
public class FileCountLimitExceededException extends FileUploadException
This exception is thrown if a request contains more files than the specified limit.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FileCountLimitExceededException(String message, long limit)
Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getLimit()
Retrieves the limit that was exceeded.-
Methods inherited from class org.apache.commons.fileupload.FileUploadException
getCause, printStackTrace, printStackTrace
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
FileCountLimitExceededException
public FileCountLimitExceededException(String message, long limit)
Creates a new instance.- Parameters:
message
- The detail messagelimit
- The limit that was exceeded
-
-