首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Exception >

DWR异常处理

2014-01-26 
dwr.xml convert converterexception matchexception.BusinessExceptionparam nameinclude val

dwr.xml
<convert converter="exception"
match="exception.BusinessException">
  <param name="include" value="errorCode" />
</convert>

BusinessException:
public BusinessException(String errorMessage) {
this.errorMessage = errorMessage;
}

public ErrorCode getErrorCode() {
return errorCode;
}

SubjectService.removeSubject(record,{

callback:function() {}
errorHandler:function(es,exception){
alert(exception.errorMessage);
}
----------------
打印出来的是unfined,请教DWR异常处理问题?


------解决方法--------------------------------------------------------
有exception.BusinessException("es",callback)么?

        

热点排行