All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.tinkerpop.gremlin.ogm.exceptions.IncompatibleIterable.kt Maven / Gradle / Ivy

There is a newer version: 0.21.0
Show newest version
package org.apache.tinkerpop.gremlin.ogm.exceptions

import org.apache.tinkerpop.gremlin.ogm.reflection.PropertyDescription

internal class IncompatibleIterable(
        propertyDescription: PropertyDescription<*, *>
) : ClientException(
        description = "Unsupported iterable of type ${propertyDescription.property}. " +
                "This library knows how to serialize/deserialize the iterable based on the iterable's type " +
                "parameter's first upper bound constraint, which must be a class. For example when " +
                "deserializing List, T's first upper bound constraint must be a class. That class determines how to" +
                "map the iterable's elements to/from the graph. Alternatively, you can define a custom vertexMapper for this iterable property."
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy