本文整理了Java中com.zyd.blog.framework.exception.ZhydLinkException
类的一些代码示例,展示了ZhydLinkException
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZhydLinkException
类的具体详情如下:
包路径:com.zyd.blog.framework.exception.ZhydLinkException
类名称:ZhydLinkException
暂无
代码示例来源:origin: zhangyd-c/OneBlog
@PostMapping("/autoLink")
@BussinessLog(value = "自助申请友链", platform = PlatformEnum.WEB)
public ResponseVO autoLink(@Validated Link link, BindingResult bindingResult) {
log.info("申请友情链接......");
log.info(JSON.toJSONString(link));
if (bindingResult.hasErrors()) {
return ResultUtil.error(bindingResult.getFieldError().getDefaultMessage());
}
try {
sysLinkService.autoLink(link);
} catch (ZhydLinkException e) {
log.error("客户端自助申请友链发生异常", e);
return ResultUtil.error(e.getMessage());
}
return ResultUtil.success("已成功添加友链,祝您生活愉快!");
}
代码示例来源:origin: zhangyd-c/OneBlog
Link bo = getOneByUrl(url);
if (bo != null) {
throw new ZhydLinkException("本站已经添加过贵站的链接!");
throw new ZhydLinkException("贵站暂未添加本站友情链接!请先添加本站友链后重新提交申请!");
内容来源于网络,如有侵权,请联系作者删除!