catch (Exception e) {
throw new ActionException(e);
}
}
else if (obj instanceof SessionAction) {
SessionAction sa = (SessionAction)obj;
try {
sa.run(ses);
}
catch (Exception e) {
throw new ActionException(e);
}
}
else if (obj instanceof SimpleAction) {
SimpleAction sa = (SimpleAction)obj;
try {
sa.run(ids);
}
catch (Exception e) {
throw new ActionException(e);
}
}