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


Java HttpUnitUtils.handleException方法代码示例

本文整理汇总了Java中com.meterware.httpunit.HttpUnitUtils.handleException方法的典型用法代码示例。如果您正苦于以下问题:Java HttpUnitUtils.handleException方法的具体用法?Java HttpUnitUtils.handleException怎么用?Java HttpUnitUtils.handleException使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.meterware.httpunit.HttpUnitUtils的用法示例。


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

示例1: autoLoadServlets

import com.meterware.httpunit.HttpUnitUtils; //导入方法依赖的package包/类
void autoLoadServlets() {
    ArrayList autoLoadable = new ArrayList();
    if (_defaultMapping != null && _defaultMapping.getConfiguration().isLoadOnStartup()) autoLoadable.add( _defaultMapping.getConfiguration() );
    collectAutoLoadableServlets( autoLoadable, _exactMatches );
    collectAutoLoadableServlets( autoLoadable, _extensions );
    collectAutoLoadableServlets( autoLoadable, _urlTree );
    if (autoLoadable.isEmpty()) return;

    Collections.sort( autoLoadable, new Comparator() {
        public int compare( Object o1, Object o2 ) {
            ServletConfiguration sc1 = (ServletConfiguration) o1;
            ServletConfiguration sc2 = (ServletConfiguration) o2;
            return (sc1.getLoadOrder() <= sc2.getLoadOrder()) ? -1 : +1;
        }
    });
    for (Iterator iterator = autoLoadable.iterator(); iterator.hasNext();) {
        ServletConfiguration servletConfiguration = (ServletConfiguration) iterator.next();
        try {
            servletConfiguration.getServlet();
        } catch (Exception e) {
        		HttpUnitUtils.handleException(e);
            throw new RuntimeException( "Unable to autoload servlet: " + servletConfiguration.getClassName() + ": " + e );
        }
    }
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:26,代码来源:WebApplication.java

示例2: handleScriptException

import com.meterware.httpunit.HttpUnitUtils; //导入方法依赖的package包/类
/**
 * handle Exceptions 
 * @param e - the exception to handle
 * @param badScript - the script that caused the problem
 */
static public void handleScriptException( Exception e, String badScript ) {
    final String errorMessage = badScript + " failed: " + e;
    if (!(e instanceof EcmaError) && !(e instanceof EvaluatorException)) {
      HttpUnitUtils.handleException(e);
        throw new RuntimeException( errorMessage );
    } else if (JavaScript.isThrowExceptionsOnError()) {
      HttpUnitUtils.handleException(e);
        throw new ScriptException( errorMessage );
    } else {
        _errorMessages.add( errorMessage );
    }
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:18,代码来源:ScriptingEngineImpl.java


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