com.expedia.graphql.schema.exceptions.GraphQLKotlinException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-kotlin Show documentation
Show all versions of graphql-kotlin Show documentation
Code-only GraphQL schema generation for Kotlin
package com.expedia.graphql.schema.exceptions
/**
* Base exception that all our library exceptions extend from.
*/
open class GraphQLKotlinException(message: String = "", throwable: Throwable? = null)
: RuntimeException(message, throwable)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy