码迷,mamicode.com
首页 > 其他好文 > 详细

如何在serviceImpl抛出异常

时间:2017-12-13 14:57:01      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:oid   exce   private   blog   如何   cti   ati   exception   pos   

 

 

    private void checkRelationTaskList(List<DeliveryTaskDO> taskList) {
        if (CollectionUtils.isNotEmpty(taskList)) {
            List<String> errorList = taskList.stream()
                .map(deliveryTaskDO -> String.format("%s(%s)", deliveryTaskDO.getTaskName(), deliveryTaskDO.getId()))
                .collect(Collectors.toList());
            String errorMessage = String.format("投放任务有引用,无法删除:%s", Joiner.on(", ").join(errorList));
            throw new IllegalArgumentException(errorMessage);
        }
    }

 

如何在serviceImpl抛出异常

标签:oid   exce   private   blog   如何   cti   ati   exception   pos   

原文地址:http://www.cnblogs.com/iwangzheng/p/8032077.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!