com.redhat.lightblue.util.Error.toString()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(1.8k)|赞(0)|评价(0)|浏览(142)

本文整理了Java中com.redhat.lightblue.util.Error.toString()方法的一些代码示例,展示了Error.toString()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Error.toString()方法的具体详情如下:
包路径:com.redhat.lightblue.util.Error
类名称:Error
方法名:toString

Error.toString介绍

暂无

代码示例

代码示例来源:origin: lightblue-platform/lightblue-core

@Override
public String getMessage() {
  return this.toString();
}

代码示例来源:origin: com.redhat.lightblue/lightblue-core-util

@Override
public String getMessage() {
  return this.toString();
}

代码示例来源:origin: com.redhat.lightblue/util

@Override
public String getMessage() {
  return this.toString();
}

代码示例来源:origin: com.redhat.lightblue/lightblue-core-util

private Error(String errorCode, String msg) {
  this.context = new ArrayDeque<>();
  this.errorCode = errorCode;
  this.msg = msg;
  LOGGER.error(this.toString());
}

代码示例来源:origin: lightblue-platform/lightblue-core

private Error(String errorCode, String msg) {
  this.context = new ArrayDeque<>();
  this.errorCode = errorCode;
  this.msg = msg;
  LOGGER.error(this.toString());
}

代码示例来源:origin: com.redhat.lightblue/lightblue-core-util

private Error(ArrayDeque<String> context, String errorCode, String msg) {
  this.context = context.clone();
  this.errorCode = errorCode;
  this.msg = msg;
  LOGGER.error(this.toString());
}

代码示例来源:origin: lightblue-platform/lightblue-core

private Error(ArrayDeque<String> context, String errorCode, String msg) {
  this.context = context.clone();
  this.errorCode = errorCode;
  this.msg = msg;
  LOGGER.error(this.toString());
}

代码示例来源:origin: com.redhat.lightblue.hook/lightblue-audit-hook

LOGGER.error(e.toString());

代码示例来源:origin: com.redhat.lightblue.hook/audit

LOGGER.error(e.toString());

代码示例来源:origin: com.redhat.lightblue.mongo/lightblue-mongo

} else {
  LOGGER.warn("Update exception for document {}: {}", docIndex, e);
  doc.addError(Error.get(MongoCrudConstants.ERR_UPDATE_ERROR, e.toString()));
  hasErrors = true;

相关文章