flex FaultEvent捕获java异常

 flex FaultEvent捕获java异常

public void updateDataInfo(DataInfo dataInfo) throws DataException {
try {
DataInfo data = (DataInfo) dataDao.getEnityById(poiInfo.getDataId(), DataInfo.class);
if(data .getDataStateId() > 3 && dataInfo.getDataStateId() > 3){
throw new DataException(DataErrorCodes.Data_DOUBLE_AUTHORISE);
}
else{
data.setAuthenticatet(poiInfo.getAuthenticateResult());
data.setCode(poiInfo.getCityCode());
data.setCreateTime(poiInfo.getCreateTime());
data.setEnabled(poiInfo.isEnabled());
data.setDataAddress(poiInfo.getShopAddress());
data.setDataDesc(poiInfo.getShopDesc());

DataStateInfo stateInfo = new DataStateInfo();
stateInfo.setStateId(poiInfo.getDataStateId());
DataTypeInfo type = new DataTypeInfo();
type.setTypeId(poiInfo.getDataTypeId());

data.setDataState(stateInfo);
data.setDataType(type);

DataDao.update(data);
}
}
catch (DaoException e) {
logger.error(e.getErrorCode());
throw new TaxiException(DataErrorCodes.UPDATE_DataINFO_ERROR);
}
}



ublic class DataException extends RuntimeException {
private String errorCode;

public DataException(String errorCode){
this.errorCode = errorCode;
}
/**
* @return the errorCode
*/
public String getErrorCode() {
return errorCode;
}
/**
* @param errorCode the errorCode to set
*/
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
}


public class DataErrorCodes {
public static final String UPDATE_DataINFO_ERROR = "UPDATE_DATAINFO_ERRORS";
}


前台flex用FaultEvent中event.fault.rootCause.errorCode.toString()
private function OnFaultUpdateInfo(event:FaultEvent):void
{
if (event.fault.rootCause.errorCode.toString() == "SHOP_DOUBLE_AUTHORISE")
{
this.dispatchEvent(new ShopEvent(ShopEvent.UPDATESHOPPOIINFOFALUT));
}
else
{
this.dispatchEvent(new ShopEvent(ShopEvent.SHOPCONFALUT));
return;
}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值