Using Rails 3, I have an account model which has_many addresses. In the address model I have a before_destroy callback method defined which prevents the destroy and adds an error to the address object if the address is associated with a third model. This works fine to prevent the delete of the account or the address.
My issue comes when deleting the account as I would expect the account object's errors to contain the address error but it does not. Is there any way to include the address error message within the account errors?