I'm reading this tutorial on file uploads: https://guides.grails.org/grails-upload-file/guide/index.html
But even if the file size limit is set to 25MB, there is no description of how to handle the FileUploadBase$SizeLimitExceededException exception when the file uploaded is greated than that. If there is a limit, even if it's too big, someone will hit it and would like to show a nice error to the user, but the exception seems to happen before executing my controller's code.
The question is: how to handle that kind of exception on a Grails 3.3.x app?