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