gpt4 book ai didi

com.ctc.wstx.exc.WstxException.getLocationDesc()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-27 00:13:05 28 4
gpt4 key购买 nike

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

WstxException.getLocationDesc介绍

暂无

代码示例

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

/**
 * Method is overridden for two main reasons: first, default method
 * does not display public/system id information, even if it exists, and
 * second, default implementation can not handle nested Location
 * information.
 */
public String getMessage()
{
  String locMsg = getLocationDesc();
  /* Better not use super's message if we do have location information,
   * since parent's message contains (part of) Location
   * info; something we can regenerate better...
   */
  if (locMsg == null) {
    return super.getMessage();
  }
  StringBuffer sb = new StringBuffer(mMsg.length() + locMsg.length() + 20);
  sb.append(mMsg);
  StringUtil.appendLF(sb);
  sb.append(" at ");
  sb.append(locMsg);
  return sb.toString();
}

代码示例来源:origin: FasterXML/woodstox

/**
 * Method is overridden for two main reasons: first, default method
 * does not display public/system id information, even if it exists, and
 * second, default implementation can not handle nested Location
 * information.
 */
@Override
public String getMessage()
{
  String locMsg = getLocationDesc();
  /* Better not use super's message if we do have location information,
   * since parent's message contains (part of) Location
   * info; something we can regenerate better...
   */
  if (locMsg == null) {
    return super.getMessage();
  }
  StringBuilder sb = new StringBuilder(mMsg.length() + locMsg.length() + 20);
  sb.append(mMsg);
  StringUtil.appendLF(sb);
  sb.append(" at ");
  sb.append(locMsg);
  return sb.toString();
}

代码示例来源:origin: woodstox/wstx-lgpl

/**
 * Method is overridden for two main reasons: first, default method
 * does not display public/system id information, even if it exists, and
 * second, default implementation can not handle nested Location
 * information.
 */
public String getMessage()
{
  String locMsg = getLocationDesc();
  /* Better not use super's message if we do have location information,
   * since parent's message contains (part of) Location
   * info; something we can regenerate better...
   */
  if (locMsg == null) {
    return super.getMessage();
  }
  StringBuffer sb = new StringBuffer(mMsg.length() + locMsg.length() + 20);
  sb.append(mMsg);
  StringUtil.appendLF(sb);
  sb.append(" at ");
  sb.append(locMsg);
  return sb.toString();
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.woodstox

/**
 * Method is overridden for two main reasons: first, default method
 * does not display public/system id information, even if it exists, and
 * second, default implementation can not handle nested Location
 * information.
 */
public String getMessage()
{
  String locMsg = getLocationDesc();
  /* Better not use super's message if we do have location information,
   * since parent's message contains (part of) Location
   * info; something we can regenerate better...
   */
  if (locMsg == null) {
    return super.getMessage();
  }
  StringBuffer sb = new StringBuffer(mMsg.length() + locMsg.length() + 20);
  sb.append(mMsg);
  StringUtil.appendLF(sb);
  sb.append(" at ");
  sb.append(locMsg);
  return sb.toString();
}

代码示例来源:origin: com.fasterxml.woodstox/woodstox-core

/**
 * Method is overridden for two main reasons: first, default method
 * does not display public/system id information, even if it exists, and
 * second, default implementation can not handle nested Location
 * information.
 */
@Override
public String getMessage()
{
  String locMsg = getLocationDesc();
  /* Better not use super's message if we do have location information,
   * since parent's message contains (part of) Location
   * info; something we can regenerate better...
   */
  if (locMsg == null) {
    return super.getMessage();
  }
  StringBuilder sb = new StringBuilder(mMsg.length() + locMsg.length() + 20);
  sb.append(mMsg);
  StringUtil.appendLF(sb);
  sb.append(" at ");
  sb.append(locMsg);
  return sb.toString();
}

代码示例来源:origin: woodstox/wstx-asl

/**
 * Method is overridden for two main reasons: first, default method
 * does not display public/system id information, even if it exists, and
 * second, default implementation can not handle nested Location
 * information.
 */
public String getMessage()
{
  String locMsg = getLocationDesc();
  /* Better not use super's message if we do have location information,
   * since parent's message contains (part of) Location
   * info; something we can regenerate better...
   */
  if (locMsg == null) {
    return super.getMessage();
  }
  StringBuffer sb = new StringBuffer(mMsg.length() + locMsg.length() + 20);
  sb.append(mMsg);
  StringUtil.appendLF(sb);
  sb.append(" at ");
  sb.append(locMsg);
  return sb.toString();
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-lgpl

/**
 * Method is overridden for two main reasons: first, default method
 * does not display public/system id information, even if it exists, and
 * second, default implementation can not handle nested Location
 * information.
 */
public String getMessage()
{
  String locMsg = getLocationDesc();
  /* Better not use super's message if we do have location information,
   * since parent's message contains (part of) Location
   * info; something we can regenerate better...
   */
  if (locMsg == null) {
    return super.getMessage();
  }
  StringBuffer sb = new StringBuffer(mMsg.length() + locMsg.length() + 20);
  sb.append(mMsg);
  StringUtil.appendLF(sb);
  sb.append(" at ");
  sb.append(locMsg);
  return sb.toString();
}

代码示例来源:origin: Nextdoor/bender

/**
 * Method is overridden for two main reasons: first, default method
 * does not display public/system id information, even if it exists, and
 * second, default implementation can not handle nested Location
 * information.
 */
@Override
public String getMessage()
{
  String locMsg = getLocationDesc();
  /* Better not use super's message if we do have location information,
   * since parent's message contains (part of) Location
   * info; something we can regenerate better...
   */
  if (locMsg == null) {
    return super.getMessage();
  }
  StringBuilder sb = new StringBuilder(mMsg.length() + locMsg.length() + 20);
  sb.append(mMsg);
  StringUtil.appendLF(sb);
  sb.append(" at ");
  sb.append(locMsg);
  return sb.toString();
}

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com