reiern70 commented on PR #586:
URL: https://github.com/apache/wicket/pull/586#issuecomment-1518510043

   Hum... Not totally true that problem is in our court as filename is ignored 
here.
   
   ```
    /**
        * 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 is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@wicket.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to