mirror of https://github.com/alibaba/easyexcel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
701 B
20 lines
701 B
package com.alibaba.easytools.spring.exception.convertor; |
|
|
|
import com.alibaba.easytools.base.excption.CommonErrorEnum; |
|
import com.alibaba.easytools.base.wrapper.result.ActionResult; |
|
|
|
import org.springframework.web.bind.MethodArgumentNotValidException; |
|
|
|
/** |
|
* MethodArgumentNotValidException |
|
* |
|
* @author 是仪 |
|
*/ |
|
public class MethodArgumentNotValidExceptionConvertor implements ExceptionConvertor<MethodArgumentNotValidException> { |
|
|
|
@Override |
|
public ActionResult convert(MethodArgumentNotValidException exception) { |
|
String message = ExceptionConvertorUtils.buildMessage(exception.getBindingResult()); |
|
return ActionResult.fail(CommonErrorEnum.PARAM_ERROR, message); |
|
} |
|
}
|
|
|