Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.


I am trying to delete a non existent entity in a database but the delete() method doesn't thow any exception.
How can I get an error when I try to delete a non existent entity?
I have copied my code below:

public void remove(MyEntity persistentInstance) {
 logger.debug("removing entity: " + persistentInstance);
    try {
        sessionFactory.getCurrentSession().delete(persistentInstance);
        logger.debug("remove successful");
    } catch (final RuntimeException re) {
        logger.error("remove failed", re);
        throw re;
    }
}

EDIT:
I call the remove in the tests using the following code:

final MyEntity instance2 = new MyEntity (Utilities.maxid + 1); //non existent id
    try {
        mydao.remove(instance2);
        sessionFactory.getCurrentSession().flush();
        fail(removeFailed);
    } catch (final RuntimeException ex) {

    }

Even if I call a flush the test doesn't fail, why?
I would like to get an exception. Anyway I am also interested to understand when the delete() can throw an exception.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.