// Error Code
if(!StringUtil.isEmpty(errCode,true))pe.setErrorCode(errCode);
// Additional
if(pe instanceof PageExceptionImpl) {
PageExceptionImpl pei=(PageExceptionImpl) pe;
sct=Caster.toStruct(sct.get("additional",null),null);
Iterator<Entry<Key, Object>> it = sct.entryIterator();
Entry<Key, Object> e;
while(it.hasNext()){
e = it.next();
pei.setAdditional(e.getKey(), e.getValue());
}
}
return pe;
}
}