[
https://issues.apache.org/jira/browse/FILEUPLOAD-350?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Gary D. Gregory resolved FILEUPLOAD-350.
----------------------------------------
Fix Version/s: 2.0
Resolution: Fixed
> FileUploadByteCountLimitException ctor switches fileName and fieldName
> parameters
> ---------------------------------------------------------------------------------
>
> Key: FILEUPLOAD-350
> URL: https://issues.apache.org/jira/browse/FILEUPLOAD-350
> Project: Commons FileUpload
> Issue Type: Improvement
> Affects Versions: Nightly Builds
> Reporter: Ernesto Reinaldo Barreiro
> Priority: Major
> Fix For: 2.0
>
>
> /**
> * Constructs an instance with the specified detail message, and actual and
> permitted sizes.
> *
> * @param message The detail message (which is saved for later retrieval by
> the \{@link #getMessage()} method)
> * @param actual The actual request size.
> * @param permitted The maximum permitted request size.
> * @param fileName File name of the item, which caused the exception.
> * @param fieldName Field name of the item, which caused the exception.
> */
> public FileUploadByteCountLimitException(final String message, final long
> actual, final long permitted, final String fileName, final String fieldName) {
> super(message, permitted, actual);
> this.fileName = fieldName;
> this.fieldName = fieldName;
> }
--
This message was sent by Atlassian Jira
(v8.20.10#820010)