File tree Expand file tree Collapse file tree 1 file changed +0
-13
lines changed
hibernate-core/src/main/java/org/hibernate Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Original file line number Diff line number Diff line change 44 */
55package org .hibernate ;
66
7- import org .hibernate .internal .CoreMessageLogger ;
8-
9- import org .jboss .logging .Logger ;
10-
11- import java .lang .invoke .MethodHandles ;
12-
137/**
148 * Indicates an attempt to access unfetched data outside the context
159 * of an open stateful {@link Session}.
2519 */
2620public class LazyInitializationException extends HibernateException {
2721
28- private static final CoreMessageLogger LOG = Logger .getMessageLogger (
29- MethodHandles .lookup (),
30- CoreMessageLogger .class ,
31- LazyInitializationException .class .getName ()
32- );
33-
3422 /**
3523 * Constructs a {@code LazyInitializationException} using the given message.
3624 *
3725 * @param message A message explaining the exception condition
3826 */
3927 public LazyInitializationException (String message ) {
4028 super ( message );
41- LOG .trace ( message , this );
4229 }
4330
4431}
You can’t perform that action at this time.
0 commit comments