SigilRequiredException

class SigilRequiredException(message: String = "No sigil found — forge a passkey first") : Exception

Thrown by seed-derivation paths (and sigil-derivation paths) that require the user to have a forged passkey.

WalletSeedSource and SigilIdentityProvider both throw this when the sigil prefs are empty. Consumers translate to whatever UI affordance they own: the wallet panel emits WalletStatus.SigilRequired; the Kicks activity surfaces "Forge your sigil first (tap the sigil chip up top)."; custom dApps render their own gate.

Lives in this package because it sits at the seam between identity (where the sigil is born) and backup/seed-derivation (where it's required). Stays as a checked-via-catch exception so callers can intercept it specifically without swallowing real failures.

Constructors

Link copied to clipboard
constructor(message: String = "No sigil found — forge a passkey first")

Properties

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