Example usage for org.springframework.web.multipart.support MissingServletRequestPartException MissingServletRequestPartException

List of usage examples for org.springframework.web.multipart.support MissingServletRequestPartException MissingServletRequestPartException

Introduction

In this page you can find the example usage for org.springframework.web.multipart.support MissingServletRequestPartException MissingServletRequestPartException.

Prototype

public MissingServletRequestPartException(String partName) 

Source Link

Usage

From source file:com.monarchapis.driver.spring.rest.ApiErrorResponseEntityExceptionHandlerTest.java

@Test
public void testMissingServletRequestPartException() {
    performTest(//
            new MissingServletRequestPartException("test"), //
            400, //
            "missingRequestPart");
}