commonMain.exception.KordInitializationException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kord-core-jvm Show documentation
Show all versions of kord-core-jvm Show documentation
Idiomatic Kotlin Wrapper for The Discord API
package dev.kord.core.exception
public class KordInitializationException : Exception {
public constructor(message: String) : super(message)
public constructor(cause: Throwable) : super(cause)
public constructor(message: String, cause: Throwable) : super(message, cause)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy