Changed the error handling for LazyInitializationException to go through the throwLazyInitializationException method so that the collection role is reported.
This commit is contained in:
parent
d34e409f41
commit
afc49f435f
|
@ -183,7 +183,7 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
|
|||
isTempSession = true;
|
||||
}
|
||||
else {
|
||||
throw new LazyInitializationException( "could not initialize proxy - no Session" );
|
||||
throwLazyInitializationException( "could not initialize proxy - no Session" );
|
||||
}
|
||||
}
|
||||
else if ( !session.isOpen() ) {
|
||||
|
@ -193,7 +193,7 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
|
|||
isTempSession = true;
|
||||
}
|
||||
else {
|
||||
throw new LazyInitializationException( "could not initialize proxy - the owning Session was closed" );
|
||||
throwLazyInitializationException( "could not initialize proxy - the owning Session was closed" );
|
||||
}
|
||||
}
|
||||
else if ( !session.isConnected() ) {
|
||||
|
@ -203,7 +203,7 @@ public abstract class AbstractPersistentCollection implements Serializable, Pers
|
|||
isTempSession = true;
|
||||
}
|
||||
else {
|
||||
throw new LazyInitializationException( "could not initialize proxy - the owning Session is disconnected" );
|
||||
throwLazyInitializationException( "could not initialize proxy - the owning Session is disconnected" );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue