org.apache.wicket.util.upload
Class FileUploadBase.SizeException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.apache.wicket.util.upload.FileUploadException
              extended by org.apache.wicket.util.upload.FileUploadBase.SizeException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
FileUploadBase.FileSizeLimitExceededException, FileUploadBase.SizeLimitExceededException
Enclosing class:
FileUploadBase

protected abstract static class FileUploadBase.SizeException
extends FileUploadException

This exception is thrown, if a requests permitted size is exceeded.

See Also:
Serialized Form

Constructor Summary
protected FileUploadBase.SizeException(String message, long actual, long permitted)
          Creates a new instance.
 
Method Summary
 long getActualSize()
          Retrieves the actual size of the request.
 long getPermittedSize()
          Retrieves the permitted size of the request.
 
Methods inherited from class org.apache.wicket.util.upload.FileUploadException
getCause, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

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.
Method Detail

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 © 2004-2011 Apache Software Foundation. All Rights Reserved.