本文整理汇总了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 );
}
}
}
示例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 );
}
}