commonMain.com.pubnub.api.PubNubException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pubnub-kotlin-api-jvm Show documentation
Show all versions of pubnub-kotlin-api-jvm Show documentation
PubNub is a cross-platform client-to-client (1:1 and 1:many) push service in the cloud, capable of broadcasting real-time messages to millions of web and mobile clients simultaneously, in less than a quarter second!
The newest version!
package com.pubnub.api
/**
* Custom exception wrapper for errors occurred during execution or processing of a PubNub API operation.
*
* @property errorMessage The error message received from the server, if any.
* @property pubnubError The appropriate matching PubNub error.
* @property jso The error json received from the server, if any.
* @property statusCode HTTP status code.
* @property affectedCall A reference to the affected call. Useful for calling [retry][Endpoint.retry].
*/
expect class PubNubException(errorMessage: String?, cause: Throwable? = null) : Exception {
constructor(pubnubError: PubNubError, cause: Throwable? = null)
// test only
constructor(errorMessage: String?, statusCode: Int, cause: Throwable? = null)
val statusCode: Int
companion object {
fun from(e: Throwable): PubNubException
}
}