use of cn.taketoday.web.bind.resolver.MissingRequestPartException in project today-framework by TAKETODAY.
the class ResponseEntityExceptionHandlerTests method missingServletRequestPart.
@Test
public void missingServletRequestPart() {
Exception ex = new MissingRequestPartException("partName");
testException(ex);
}
Aggregations