AbortException

class AbortException(message: String = "Authentication aborted by user", cause: Throwable? = null) : Exception

Exception thrown when the user aborts an authentication operation.

This exception is typically thrown when the user cancels a biometric prompt or explicitly aborts the authentication process.

Parameters

message

The error message describing the abort reason

cause

The underlying cause of the exception, if any

Constructors

Link copied to clipboard
constructor(message: String = "Authentication aborted by user", cause: Throwable? = null)