save(s,p);
}
else
{
logger.log(Level.WARNING, "Project Name Conflict Exception during Project creation.");
throw new ConflictException("A project with the given name already exists. Entity String: " + content);
}
}
else
{
logger.log(Level.WARNING, "ID Conflict Exception during Project creation.");
throw new ConflictException("A project with the given ID already exists. Entity String: " + content);
}
logger.log(Level.FINER, "Project creation success!");
return p;
}