当前位置: 首页>>代码示例>>Java>>正文


Java ErrorMsg.ILLEGAL_CHAR_ERR属性代码示例

本文整理汇总了Java中com.sun.org.apache.xalan.internal.xsltc.compiler.util.ErrorMsg.ILLEGAL_CHAR_ERR属性的典型用法代码示例。如果您正苦于以下问题:Java ErrorMsg.ILLEGAL_CHAR_ERR属性的具体用法?Java ErrorMsg.ILLEGAL_CHAR_ERR怎么用?Java ErrorMsg.ILLEGAL_CHAR_ERR使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在com.sun.org.apache.xalan.internal.xsltc.compiler.util.ErrorMsg的用法示例。


在下文中一共展示了ErrorMsg.ILLEGAL_CHAR_ERR属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: parse

/**
 * Parse the expression passed to the current scanner. If this
 * expression contains references to local variables and it will be
 * compiled in an external module (not in the main class) request
 * the current template to create a new variable stack frame.
 *
 * @param lineNumber Line where the current expression is defined.
 * @param external   Set to <tt>true</tt> if this expression is
 *                   compiled in a separate module.
 *
 */
public Symbol parse(String expression, int lineNumber) throws Exception {
    try {
        _expression = expression;
        _lineNumber = lineNumber;
        return super.parse();
    }
    catch (IllegalCharException e) {
        ErrorMsg err = new ErrorMsg(ErrorMsg.ILLEGAL_CHAR_ERR,
                                    lineNumber, e.getMessage());
        _parser.reportError(Constants.FATAL, err);
    }
    return null;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:24,代码来源:XPathParser.java


注:本文中的com.sun.org.apache.xalan.internal.xsltc.compiler.util.ErrorMsg.ILLEGAL_CHAR_ERR属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。