Package: InvalidEnumMappingException
InvalidEnumMappingException
name | instruction | branch | complexity | line | method | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
InvalidEnumMappingException(String) |
|
|
|
|
|
Coverage
1: package cz.cvut.kbss.jsonld.exception;
2:
3: /**
4: * Indicates that enum constant cannot be mapped to/from JSON-LD.
5: */
6: public class InvalidEnumMappingException extends JsonLdException {
7:
8: public InvalidEnumMappingException(String message) {
9: super(message);
10: }
11: }