Class FileUploadBase.SizeLimitExceededException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.commons.fileupload.FileUploadException
org.apache.commons.fileupload.FileUploadBase.SizeLimitExceededException
All Implemented Interfaces:
Serializable
Enclosing class:
FileUploadBase

public static class FileUploadBase.SizeLimitExceededException extends FileUploadException
Thrown to indicate that the request size exceeds the configured maximum.
See Also:
  • Constructor Details

    • SizeLimitExceededException

      @Deprecated public SizeLimitExceededException()
    • SizeLimitExceededException

      @Deprecated public SizeLimitExceededException(String message)
      Parameters:
      message - The exceptions detail message.
    • SizeLimitExceededException

      public SizeLimitExceededException(String message, long actual, long permitted)
      Constructs a SizeExceededException 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.