Frequently Occurring Errors

Frequently occurring errors #

This page contains the following content:

Basic information #

This page is a collection of frequently occurring errors and contains proposed solutions for them.

SimilarityModelHandler #

RuntimeException: Could not create similarity measure - class name not found! #

Error description: A common mistake is that the class name is not found.

Solution: Check if the class name is spelled correctly. If, it probably refers to a non-existent class that has yet to be created in the model.

Runtime Exception: Data class is used in similarity measure, but is not created! #

Error description: A common mistake is that the data class in similarity measure is set but not created.

Solution: If the data class is the native value for the object, try to use the similarity measure TableDataObject.

RuntimeException: Similarity measure is the name of a data class, required is an atomic object! #

Error description: A common mistake is that the similarity measure is given the wrong atomic object, because the name of a data class is entered here.

Solution: To solve this problem try to change TableDataClass with TableDataObject.

RuntimeException: Similarity measure is an atomic object, required is a data class! #

Error description: A common mistake is that the similarity measure is given an atomic object instead of a data class.

Solution: To solve this problem try to change TableDataObject with TableDataClass.