org.apache.tomcat.util.http.fileupload
Class FileUploadBase.SizeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.tomcat.util.http.fileupload.FileUploadException
org.apache.tomcat.util.http.fileupload.FileUploadBase.SizeException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- FileUploadBase.FileSizeLimitExceededException, FileUploadBase.SizeLimitExceededException
- Enclosing class:
- FileUploadBase
public abstract static class FileUploadBase.SizeException
- extends FileUploadException
This exception is thrown, if a requests permitted size
is exceeded.
- See Also:
- Serialized Form
Method Summary |
long |
getActualSize()
Retrieves the actual size of the request. |
long |
getPermittedSize()
Retrieves the permitted size of the request. |
FileUploadBase.SizeException
protected FileUploadBase.SizeException(String message,
long actual,
long permitted)
- Creates a new instance.
- Parameters:
message
- The detail message.actual
- The actual number of bytes in the request.permitted
- The requests size limit, in bytes.
getActualSize
public long getActualSize()
- Retrieves the actual size of the request.
- Returns:
- The actual size of the request.
getPermittedSize
public long getPermittedSize()
- Retrieves the permitted size of the request.
- Returns:
- The permitted size of the request.
Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.