Skip to content

Commit 9263a26

Browse files
committed
fix an exception message
Signed-off-by: Gavin King <[email protected]>
1 parent 5b2a87c commit 9263a26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hibernate-core/src/main/java/org/hibernate/engine/internal/Collections.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ private static void processDereferencedCollection(PersistentCollection<?> coll,
9494
//only collections belonging to deleted entities are allowed to be dereferenced in the case of orphan delete
9595
if ( e != null && !e.getStatus().isDeletedOrGone() ) {
9696
throw new HibernateException(
97-
"A collection with cascade=\"all-delete-orphan\" was no longer referenced by the owning entity instance: " +
97+
"A collection with orphan deletion was no longer referenced by the owning entity instance: " +
9898
loadedPersister.getRole()
9999
);
100100
}

0 commit comments

Comments
 (0)