Skip to content

Package: AmbiguousTermMappingException

AmbiguousTermMappingException

nameinstructionbranchcomplexitylinemethod
AmbiguousTermMappingException(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%

Coverage

1: package cz.cvut.kbss.jsonld.exception;
2:
3: /**
4: * Indicates that a term with the same name is already mapped by a JSON-LD context.
5: */
6: public class AmbiguousTermMappingException extends JsonLdSerializationException {
7:
8: public AmbiguousTermMappingException(String message) {
9: super(message);
10: }
11: }