NimbusError

class NimbusError(val errorType: NimbusError.ErrorType, message: String, cause: Throwable?) : Exception

A Exception modeling an error with the Nimbus SDK.

All errors fired from the Nimbus SDK are generally unrecoverable and should be treated as such.

Parameters

errorType

the type describing the error

message

the component of the sdk where the error occurred

cause

the underlying exception if the error was

Constructors

Link copied to clipboard
constructor(errorType: NimbusError.ErrorType, message: String, cause: Throwable?)

Types

Link copied to clipboard

An error from the Nimbus SDK

Link copied to clipboard
fun interface Listener

Listener for error events from the Nimbus SDK

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
Link copied to clipboard
open override val localizedMessage: String?
Link copied to clipboard
open val message: String?
Link copied to clipboard
open override var stackTrace: Array<out StackTraceElement?>?
Link copied to clipboard
override val suppressed: Array<out Throwable?>?