Package: LazyLoadingException
LazyLoadingException
name | instruction | branch | complexity | line | method | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
LazyLoadingException(String) |
|
|
|
|
|
||||||||||||||||||||
LazyLoadingException(String, Throwable) |
|
|
|
|
|
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: }