gpt4 book ai didi

org.codehaus.stax2.validation.XMLValidationException.getMessage()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-26 02:25:05 28 4
gpt4 key购买 nike

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

XMLValidationException.getMessage介绍

暂无

代码示例

代码示例来源: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();
  }
  String msg = getValidationProblem().getMessage();
  StringBuffer sb = new StringBuffer(msg.length() + locMsg.length() + 20);
  sb.append(msg);
  StringUtil.appendLF(sb);
  sb.append(" at ");
  sb.append(locMsg);
  return sb.toString();
}

代码示例来源:origin: com.fasterxml/aalto-xml

/**
 * 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();
  }
  String msg = getValidationProblem().getMessage();
  StringBuilder sb = new StringBuilder(msg.length() + locMsg.length() + 20);
  sb.append(msg);
  sb.append('\n');
  sb.append(" at ");
  sb.append(locMsg);
  return sb.toString();
}

代码示例来源:origin: FasterXML/aalto-xml

/**
 * 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();
  }
  String msg = getValidationProblem().getMessage();
  StringBuilder sb = new StringBuilder(msg.length() + locMsg.length() + 20);
  sb.append(msg);
  sb.append('\n');
  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();
  }
  String msg = getValidationProblem().getMessage();
  StringBuffer sb = new StringBuffer(msg.length() + locMsg.length() + 20);
  sb.append(msg);
  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();
  }
  String msg = getValidationProblem().getMessage();
  StringBuilder sb = new StringBuilder(msg.length() + locMsg.length() + 20);
  sb.append(msg);
  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();
  }
  String msg = getValidationProblem().getMessage();
  StringBuffer sb = new StringBuffer(msg.length() + locMsg.length() + 20);
  sb.append(msg);
  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();
  }
  String msg = getValidationProblem().getMessage();
  StringBuilder sb = new StringBuilder(msg.length() + locMsg.length() + 20);
  sb.append(msg);
  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();
  }
  String msg = getValidationProblem().getMessage();
  StringBuffer sb = new StringBuffer(msg.length() + locMsg.length() + 20);
  sb.append(msg);
  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();
  }
  String msg = getValidationProblem().getMessage();
  StringBuilder sb = new StringBuilder(msg.length() + locMsg.length() + 20);
  sb.append(msg);
  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();
  }
  String msg = getValidationProblem().getMessage();
  StringBuffer sb = new StringBuffer(msg.length() + locMsg.length() + 20);
  sb.append(msg);
  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