org.apache.tinkerpop.gremlin.ogm.exceptions.ObjectNotSaved.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-gremlin-ogm Show documentation
Show all versions of kotlin-gremlin-ogm Show documentation
The Object Graph Mapping Library for Kotlin and Gremlin
package org.apache.tinkerpop.gremlin.ogm.exceptions
internal class ObjectNotSaved(
obj: Any
) : ClientException(
description = "Object $obj must be saved before creating edges with it. This library doesn't implicitly save vertices " +
"when saving edges. This is done to prevent saving objects multiple times and creating duplicates."
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy