Package: AmbiguousContextException
AmbiguousContextException
name | instruction | branch | complexity | line | method | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
AmbiguousContextException(String) |
|
|
|
|
|
Coverage
1: package cz.cvut.kbss.jopa.exceptions;
2:
3: import cz.cvut.kbss.jopa.model.descriptors.AbstractDescriptor;
4:
5: /**
6: * Exception thrown when multiple contexts defined in a {@link AbstractDescriptor} are used
7: * for saving an assertion.
8: */
9: public class AmbiguousContextException extends OWLPersistenceException {
10:
11: public AmbiguousContextException(String message) {
12: super(message);
13: }
14: }