All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.exception.KordInitializationException.kt Maven / Gradle / Ivy

There is a newer version: 0.15.0
Show 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 - 2024 Weber Informatics LLC | Privacy Policy