* @throws PhotoAlbumException
*/
public void deleteComment(Comment comment) throws PhotoAlbumException {
try {
Image image = comment.getImage();
image.removeComment(comment);
em.remove(em.merge(comment));
em.flush();
} catch (Exception e) {
throw new PhotoAlbumException(e.getMessage());
}