gpt4 book ai didi

com.ctc.wstx.exc.WstxException类的使用及代码示例

转载 作者:知者 更新时间:2024-03-26 23:57:05 27 4
gpt4 key购买 nike

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

WstxException介绍

[英]Base class for all implementatations of XMLStreamExceptionWstx uses.
[中]XMLStreamExceptionWstx使用的所有实现的基类。

代码示例

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

protected void reportNull()
  throws WstxException
{
  throw new WstxException("Illegal null byte in input stream",
              getLocation());
}

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

protected String getLocationDesc()
  {
    Location loc = getLocation();
    return (loc == null) ? null : loc.toString();
  }
}

代码示例来源: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: org.codehaus.woodstox/woodstox-core-asl

public String toString()
{
  return getClass().getName()+": "+getMessage();
}

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

public String toString()
{
  return getClass().getName()+": "+getMessage();
}

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

protected void throwFromStrE(XMLStreamException strex)
  throws WstxException
{
  if (strex instanceof WstxException) {
    throw (WstxException) strex;
  }
  WstxException newEx = new WstxException(strex);
  ExceptionUtil.setInitCause(newEx, strex);
  throw newEx;
}

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

protected String getLocationDesc()
  {
    Location loc = getLocation();
    return (loc == null) ? null : loc.toString();
  }
}

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

public String toString()
{
  return getClass().getName()+": "+getMessage();
}

代码示例来源: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: org.codehaus.woodstox/woodstox-core-asl

throw new WstxException("Reader (of type "+mReader.getClass().getName()+") returned 0 characters, even when asked to read up to "+mBuffer.length, getLocation());

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

protected String getLocationDesc()
  {
    Location loc = getLocation();
    return (loc == null) ? null : loc.toString();
  }
}

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

@Override
public String toString() {
  return getClass().getName()+": "+getMessage();
}

代码示例来源: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: org.codehaus.woodstox/woodstox-core-asl

if (actual < 1) {
  if (actual == 0) { // sanity check:
throw new WstxException("Reader (of type "+mReader.getClass().getName()+") returned 0 characters, even when asked to read up to "+amount, getLocation());

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

protected String getLocationDesc()
  {
    Location loc = getLocation();
    return (loc == null) ? null : loc.toString();
  }
}

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

@Override
public String toString() {
  return getClass().getName()+": "+getMessage();
}

代码示例来源: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: org.codehaus.woodstox/woodstox-core-asl

BaseStartElement be = (BaseStartElement) sr.withStartElement(this, loc);
      if (be == null) { // incorrect state
        throw new WstxException("Trying to create START_ELEMENT when current event is "
                    +ErrorConsts.tokenTypeDesc(sr.getEventType()),
                    loc);
  throw new WstxException("Internal error: should not get "
              +ErrorConsts.tokenTypeDesc(r.getEventType()));
default:

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

protected String getLocationDesc()
  {
    Location loc = getLocation();
    return (loc == null) ? null : loc.toString();
  }
}

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

public String toString()
{
  return getClass().getName()+": "+getMessage();
}

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