Source code for aries_cloudagent.wallet.error

"""Wallet-related exceptions."""

from ..core.error import BaseError


[docs]class WalletError(BaseError): """General wallet exception."""
[docs]class WalletNotFoundError(WalletError): """Record not found exception."""
[docs]class WalletDuplicateError(WalletError): """Duplicate record exception."""
[docs]class WalletSettingsError(WalletError): """Invalid settings exception."""