MimiCoreException

sealed class MimiCoreException : Exception

Raised on any errors that occur within the core module.

Types

Link copied to clipboard
class ForciblyLoggedOut(    val anonymous: Boolean,     message: String? = null,     cause: Throwable? = null) : MimiCoreException

Exception class indicating a user has been forcibly logged out

Link copied to clipboard
class Generic(message: String? = null, cause: Throwable? = null) : MimiCoreException

Constructs a MimiCoreException from an exception that was thrown inside of Mimi core.

Link copied to clipboard
class MimiErrorResponse(response: Response<*>) : MimiCoreException.ServerResponse
Link copied to clipboard
class MimiSDKExpiredException(message: String? = null, cause: Throwable? = null) : MimiCoreException

Constructs a MimiSDKExpiredException from a ServerResponse informing about the use of a deprecated SDK version.

Link copied to clipboard
class OAuth2Response(response: Response<*>) : MimiCoreException.ServerResponse
Link copied to clipboard
open class ServerResponse(response: Response<*>) : MimiCoreException

Constructs a MimiCoreException from an error response.

Link copied to clipboard
class Timeout(message: String? = null, cause: Throwable? = null) : MimiCoreException

Exception class indicating some operation took too long

Functions

Link copied to clipboard
fun addSuppressed(p0: Throwable)
Link copied to clipboard
open fun fillInStackTrace(): Throwable
Link copied to clipboard
open fun getLocalizedMessage(): String
Link copied to clipboard
open fun getStackTrace(): Array<StackTraceElement>
Link copied to clipboard
fun getSuppressed(): Array<Throwable>
Link copied to clipboard
open fun initCause(p0: Throwable): Throwable
Link copied to clipboard
open fun printStackTrace()
open fun printStackTrace(p0: PrintStream)
open fun printStackTrace(p0: PrintWriter)
Link copied to clipboard
open fun setStackTrace(p0: Array<StackTraceElement>)

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
open val message: String?

Inheritors

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard