DeviceNotRegisteredException

class DeviceNotRegisteredException(message: String = "Device not registered", cause: Throwable? = null) : Exception

Exception thrown when attempting to use a device that has not been registered.

This exception indicates that the device or credential does not exist in the system. It may occur when:

  • The device has never been registered

  • The device registration was removed or deleted

  • All biometric and device credentials were removed from the device, causing the private key to be deleted

Parameters

message

The error message describing why the device is not registered

cause

The underlying cause of the exception, if any

Constructors

Link copied to clipboard
constructor(message: String = "Device not registered", cause: Throwable? = null)