org.apache.xpath.domapi.XPathStylesheetDOM3Exception类的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(2.9k)|赞(0)|评价(0)|浏览(84)

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

XPathStylesheetDOM3Exception介绍

[英]A new exception to add support for DOM Level 3 XPath API. This class is needed to throw a org.w3c.dom.DOMException with proper error code in createExpression method of XPathEvaluatorImpl (a DOM Level 3 class). This class extends TransformerException because the error message includes information about where the XPath problem is in the stylesheet as well as the XPath expression itself.
[中]添加对DOM级别3 XPath API的支持的新异常。这个类需要抛出一个组织。w3c。多姆。XPathEvaluatorImpl(一个DOM级别3类)的createExpression方法中有正确错误代码的DOMException。此类扩展了TransformerException,因为错误消息包括有关XPath问题在样式表中的位置以及XPath表达式本身的信息。

代码示例

代码示例来源:origin: robovm/robovm

ErrorListener ehandler = this.getErrorListener();
TransformerException te = new XPathStylesheetDOM3Exception(fmsg, m_sourceLocator);
if (null != ehandler)

代码示例来源:origin: xalan/xalan

ErrorListener ehandler = this.getErrorListener();
TransformerException te = new XPathStylesheetDOM3Exception(fmsg, m_sourceLocator);
if (null != ehandler)

代码示例来源:origin: com.bugvm/bugvm-rt

ErrorListener ehandler = this.getErrorListener();
TransformerException te = new XPathStylesheetDOM3Exception(fmsg, m_sourceLocator);
if (null != ehandler)

代码示例来源:origin: MobiVM/robovm

ErrorListener ehandler = this.getErrorListener();
TransformerException te = new XPathStylesheetDOM3Exception(fmsg, m_sourceLocator);
if (null != ehandler)

代码示例来源:origin: ibinti/bugvm

ErrorListener ehandler = this.getErrorListener();
TransformerException te = new XPathStylesheetDOM3Exception(fmsg, m_sourceLocator);
if (null != ehandler)

代码示例来源:origin: com.gluonhq/robovm-rt

ErrorListener ehandler = this.getErrorListener();
TransformerException te = new XPathStylesheetDOM3Exception(fmsg, m_sourceLocator);
if (null != ehandler)

代码示例来源:origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

ErrorListener ehandler = this.getErrorListener();
TransformerException te = new XPathStylesheetDOM3Exception(fmsg, m_sourceLocator);
if (null != ehandler)

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

ErrorListener ehandler = this.getErrorListener();
TransformerException te = new XPathStylesheetDOM3Exception(fmsg, m_sourceLocator);
if (null != ehandler)

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

ErrorListener ehandler = this.getErrorListener();
TransformerException te = new XPathStylesheetDOM3Exception(fmsg, m_sourceLocator);
if (null != ehandler)

代码示例来源:origin: org.apache.xalan/com.springsource.org.apache.xalan

ErrorListener ehandler = this.getErrorListener();
TransformerException te = new XPathStylesheetDOM3Exception(fmsg, m_sourceLocator);
if (null != ehandler)

代码示例来源:origin: FlexoVM/flexovm

ErrorListener ehandler = this.getErrorListener();
TransformerException te = new XPathStylesheetDOM3Exception(fmsg, m_sourceLocator);
if (null != ehandler)

相关文章

XPathStylesheetDOM3Exception类方法