Class MissingServletRequestPartException

java.lang.Object
java.lang.Throwable
java.lang.Exception
jakarta.servlet.ServletException
org.springframework.web.multipart.support.MissingServletRequestPartException
All Implemented Interfaces:
Serializable, ErrorResponse

public class MissingServletRequestPartException extends ServletException implements ErrorResponse
Signals the part of a "multipart/form-data" request, identified by name could not be found. This may be because the request is not a multipart request, or a part with that name is not present, or because the application is not configured correctly for processing multipart requests, e.g. there is no MultipartResolver.

Note: This exception does not extend from ServletRequestBindingException because it can also be raised at a lower level, i.e. from this package which does low level multipart request parsing, independent of higher level request binding features.

Since:
3.1
Author:
Rossen Stoyanchev
See Also:
  • Constructor Details

    • MissingServletRequestPartException

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

    • getRequestPartName

      public String getRequestPartName()
      Return the name of the offending part of the multipart request.
    • getStatusCode

      public HttpStatusCode getStatusCode()
      Return the HTTP status code to use for the response.
      Specified by:
      getStatusCode in interface ErrorResponse
    • getBody

      public ProblemDetail getBody()
      Return the body for the response, formatted as an RFC 7807 ProblemDetail whose status should match the response status.
      Specified by:
      getBody in interface ErrorResponse
    • getDetailMessageArguments

      public Object[] getDetailMessageArguments()
      Description copied from interface: ErrorResponse
      Return arguments to use along with a message code to resolve the problem "detail" for this exception through a MessageSource. The arguments are expanded into placeholders of the message value, e.g. "Invalid content type {0}".
      Specified by:
      getDetailMessageArguments in interface ErrorResponse