* @throws SystemException
*/
public InterceptionPointVO create(InterceptionPointVO interceptionPointVO, Database db) throws SystemException, Exception
{
InterceptionPoint interceptionPoint = new InterceptionPointImpl();
interceptionPoint.setValueObject(interceptionPointVO);
db.create(interceptionPoint);
return interceptionPoint.getValueObject();
}