Class MissingServletRequestPartException

  • All Implemented Interfaces:
    Serializable

    public class MissingServletRequestPartException
    extends ServletException
    Raised when the part of a "multipart/form-data" request identified by its name cannot be found.

    This may be because the request is not a multipart/form-data request, because the part is not present in the request, or because the web application is not configured correctly for processing multipart requests, e.g. no MultipartResolver.

    Since:
    3.1
    Author:
    Rossen Stoyanchev
    See Also:
    Serialized Form
    • Constructor Detail

      • MissingServletRequestPartException

        public MissingServletRequestPartException​(String requestPartName)
        Constructor for MissingServletRequestPartException.
        Parameters:
        requestPartName - the name of the missing part of the multipart request
    • Method Detail