org.apache.tinkerpop.gremlin.ogm.exceptions.ConflictingEdge.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 ConflictingEdge(
from: Any,
to: Any,
relationshipName: String
) : ClientException(
description = "Unable to create edge $relationshipName from $from to $to. " +
"This means at least one of the following conditions was true:\n" +
"\t1) The relationship is a 'FromOne' and the 'to' object already has an edge with this name." +
"\t2) The relationship is a 'ToOne' and the 'from' object already has an edge with this name."
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy