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 Show documentation
Show all versions of kord-core Show documentation
Idiomatic Kotlin Wrapper for The Discord API
The newest version!
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 - 2025 Weber Informatics LLC | Privacy Policy