Skip to content

Package: LazyLoadingException

LazyLoadingException

nameinstructionbranchcomplexitylinemethod
LazyLoadingException(String)
M: 0 C: 4
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%
LazyLoadingException(String, Throwable)
M: 5 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%

Coverage

1: package cz.cvut.kbss.jopa.exception;
2:
3: import cz.cvut.kbss.jopa.exceptions.OWLPersistenceException;
4:
5: /**
6: * Indicates an issue with lazy loading.
7: * <p>
8: * Typically, this would be an attempt to trigger lazy loading on a proxy that is not attached to any active persistence
9: * context.
10: */
11: public class LazyLoadingException extends OWLPersistenceException {
12:
13: public LazyLoadingException(String message) {
14: super(message);
15: }
16:
17: public LazyLoadingException(String message, Throwable cause) {
18: super(message, cause);
19: }
20: }