Modify CommentsManagerImpl

Removed Not found Exception
This commit is contained in:
nishadi 2018-01-17 11:51:32 +05:30
parent 4fb77cbee8
commit 906535eb24

View File

@ -101,12 +101,6 @@ public class CommentsManagerImpl implements CommentsManager {
log.error("Null Point Exception.Comment at comment id "+apAppCommentId+" is null.");
return false;
}
try {
throw new NotFoundException("Comment with comment id "+apAppCommentId+" does not exit");
} catch (NotFoundException e) {
log.error("Not Found Exception occurs.", e);
}
return true;
}