io.github.graphglue.definition.NodeSchemaException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphglue-core Show documentation
Show all versions of graphglue-core Show documentation
A library to develop annotation-based code-first GraphQL servers using GraphQL Kotlin, Spring Boot and Neo4j - excluding Spring GraphQL server dependencies
The newest version!
package io.github.graphglue.definition
/**
* Thrown to indicate that a node relation was wrongly declared
*
* @param message the message of the exception
*/
class NodeSchemaException(message: String) : RuntimeException(message)