Package org.apache.commons.fileupload
Class FileUploadBase.SizeLimitExceededException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.commons.fileupload.FileUploadException
-
- org.apache.commons.fileupload.FileUploadBase.SizeException
-
- org.apache.commons.fileupload.FileUploadBase.SizeLimitExceededException
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- FileUploadBase
public static class FileUploadBase.SizeLimitExceededException extends FileUploadBase.SizeException
Thrown to indicate that the request size exceeds the configured maximum.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SizeLimitExceededException()
Deprecated.1.2 Replaced bySizeLimitExceededException(String, long, long)
SizeLimitExceededException(java.lang.String message)
Deprecated.1.2 Replaced by#SizeLimitExceededException(String, long, long)
SizeLimitExceededException(java.lang.String message, long actual, long permitted)
Constructs aSizeExceededException
with the specified detail message, and actual and permitted sizes.
-
Method Summary
-
Methods inherited from class org.apache.commons.fileupload.FileUploadBase.SizeException
getActualSize, getPermittedSize
-
Methods inherited from class org.apache.commons.fileupload.FileUploadException
getCause, printStackTrace, printStackTrace
-
-
-
-
Constructor Detail
-
SizeLimitExceededException
@Deprecated public SizeLimitExceededException()
Deprecated.1.2 Replaced bySizeLimitExceededException(String, long, long)
-
SizeLimitExceededException
@Deprecated public SizeLimitExceededException(java.lang.String message)
Deprecated.1.2 Replaced by#SizeLimitExceededException(String, long, long)
- Parameters:
message
- The exceptions detail message.
-
SizeLimitExceededException
public SizeLimitExceededException(java.lang.String message, long actual, long permitted)
Constructs aSizeExceededException
with 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.
-
-