commonMain.exception.RequestException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kord-common-jvm Show documentation
Show all versions of kord-common-jvm Show documentation
Idiomatic Kotlin Wrapper for The Discord API
The newest version!
package dev.kord.common.exception
/**
* Signals that some kind of exception occurred when attempting to interact with an entity.
*/
public abstract class RequestException : Exception {
public constructor(message: String) : super(message)
public constructor(cause: Throwable) : super(cause)
public constructor(message: String, cause: Throwable) : super(message, cause)
}