SomethingWentWrongError

class SomethingWentWrongError constructor(message: String? = null, cause: Throwable? = null) : UnknownError(source)

A class representing an error that occurs when something goes wrong in the SDK.

Parameters

message

The error message.

cause

The underlying cause of the error.

See also

Constructors

Link copied to clipboard
constructor(message: String? = null, cause: Throwable? = null)

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
open override val code: Int
Link copied to clipboard
open override val errorDescription: String?
Link copied to clipboard
open val message: String?
Link copied to clipboard
open override val underlyingErrors: Array<Error>?