UnrecoverableException

open class UnrecoverableException(val cause: Exception? = null, val message: String? = null) : IllegalStateException

An exception that has happened in the Store that cannot be recovered from. This is either an exception resulting from developer errors (such as unhandled intents), or an exception while trying to recover from another exception (which is prohibited). You may also use this to bypass store plugins handling this particular exception.

Constructors

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

Properties

Link copied to clipboard
open override val cause: Exception? = null
Link copied to clipboard
open override val message: String? = null