@@ -23,4 +23,16 @@ public class ExceptionCatch { | |||
log.error("catch exception:{}",e.getMessage()); | |||
return JsonResult.error(e.getMessage()); | |||
} | |||
/** | |||
* 处理可控异常 自定义异常 | |||
* @param e | |||
* @return | |||
*/ | |||
@ExceptionHandler(ServiceException.class) | |||
@ResponseBody | |||
public JsonResult exception(ServiceException e){ | |||
log.error("catch exception:{}",e); | |||
return JsonResult.error(e.getMessage()); | |||
} | |||
} |