Package: MissingTypeInfoException
MissingTypeInfoException
name | instruction | branch | complexity | line | method | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
MissingTypeInfoException(String) |
|
|
|
|
|
Coverage
1: package cz.cvut.kbss.jsonld.exception;
2:
3: /**
4: * Indicates that no type info was found when serializing an object.
5: */
6: public class MissingTypeInfoException extends JsonLdSerializationException {
7:
8: public MissingTypeInfoException(String message) {
9: super(message);
10: }
11: }