# VerificationException
sealed class VerificationException : Exception
A class hierarchy that describes verification issues.
# Inheritors
EmptyUserId |
InvalidSessionDetails |
RequestBackoff |
VerificationFail |
# Types
Name | Summary |
---|---|
EmptyUserId | object EmptyUserId : VerificationException Empty user ID. |
InvalidSessionDetails | object InvalidSessionDetails : VerificationException The session identifier in SessionDetails is empty or blank. |
RequestBackoff | class RequestBackoff(val backoff: Long) : VerificationException Too many verification requests. Wait for the backoff period. |
VerificationFail | class VerificationFail(cause: Throwable? = null) : VerificationException Verification failed. |
# Properties
Name | Summary |
---|---|
cause | open val cause: Throwable? |
message | open val message: String? |
# Functions
Name | Summary |
---|---|
addSuppressed | fun addSuppressed(p0: Throwable) |
fillInStackTrace | open fun fillInStackTrace(): Throwable |
getLocalizedMessage | open fun getLocalizedMessage(): String |
getStackTrace | open fun getStackTrace(): Array<StackTraceElement> |
getSuppressed | fun getSuppressed(): Array<Throwable> |
initCause | open fun initCause(p0: Throwable): Throwable |
printStackTrace | open fun printStackTrace() open fun printStackTrace(p0: PrintStream) open fun printStackTrace(p0: PrintWriter) |
setStackTrace | open fun setStackTrace(p0: Array<StackTraceElement>) |