Content deleted Content added
m Task 18 (cosmetic): eval 2 templates: del empty params (4×); hyphenate params (1×); |
|||
Line 69:
setResourceData(resource);
getResourceDAO().create(resource);
} catch (Exception ex) {
throw new EJBException("Reason:" + ...);
}
Line 82:
result =
resourceDAO.selectByPrimaryKey(primaryKey);
} catch (Exception ex) {
throw new EJBException("Reason:" + ...);
}
Line 115:
ResourceDAO(employeeId);
resourceDAO.delete();
} catch (ResourceException ex) {
throw new EJBException("Reason:"+...);
} catch (BlockOutTimeException ex) {
throw new EJBException("Reason:"+...);
} catch (Exception exception) {
...
}
Line 149:
// Load other dependent objects, if necessary
...
} catch (Exception ex) {
throw new EJBException("Reason:" + ...);
}
Line 161:
// Store dependent objects as needed
...
} catch (SkillSetException ex) {
throw new EJBException("Reason:" + ...);
} catch (BlockOutTimeException ex) {
throw new EJBException("Reason:" + ...);
}
Line 223:
}
}
} catch (Exception exception) {
throw new EJBException(...);
}
|