I am switching a Spring Boot application's server from Tomcat to Jetty. I am unable to find any Jetty alternative for the org.apache.tomcat.util.http.fileupload.FileUploadException exception. This exception exists in the tomcat-coyote dependency, but if I add it, Tomcat will handle the HTTP requests instead of Jetty.
I am also concerned about other exceptions that are not present in Jetty, such as ClientAbortException. How should I deal with these exceptions during the transition?