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 4
4
*/
5
5
package org .hibernate ;
6
6
7
- import org .hibernate .internal .CoreMessageLogger ;
8
-
9
- import org .jboss .logging .Logger ;
10
-
11
- import java .lang .invoke .MethodHandles ;
12
-
13
7
/**
14
8
* Indicates an attempt to access unfetched data outside the context
15
9
* of an open stateful {@link Session}.
25
19
*/
26
20
public class LazyInitializationException extends HibernateException {
27
21
28
- private static final CoreMessageLogger LOG = Logger .getMessageLogger (
29
- MethodHandles .lookup (),
30
- CoreMessageLogger .class ,
31
- LazyInitializationException .class .getName ()
32
- );
33
-
34
22
/**
35
23
* Constructs a {@code LazyInitializationException} using the given message.
36
24
*
37
25
* @param message A message explaining the exception condition
38
26
*/
39
27
public LazyInitializationException (String message ) {
40
28
super ( message );
41
- LOG .trace ( message , this );
42
29
}
43
30
44
31
}
You can’t perform that action at this time.
0 commit comments