commonMain.com.apollographql.apollo.exception.ApolloException.kt Maven / Gradle / Ivy
package com.apollographql.apollo.exception
open class ApolloException : RuntimeException {
constructor(message: String) : super(message)
constructor(message: String, cause: Throwable) : super(message, cause)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy