+
     hw  c                   sx    R t  ! R R]4      t ! R R]4      t ! R R]4      t ! R R]4      t ! R	 R
]4      tR# )zAll secretstorage functions may raise various exceptions when
something goes wrong. All exceptions derive from base
:exc:`SecretStorageException` class.c                   s    ] tR t^tRtRtR# )SecretStorageExceptionz&All exceptions derive from this class. NZ__name__Z
__module__Z__qualname__Z__firstlineno____doc__Z__static_attributes__r       =/usr/lib/python3.14/site-packages/secretstorage/exceptions.pyr    r       s    0r   r    c                   s    ] tR t^tRtRtR# )"SecretServiceNotAvailableExceptionzRaised by :class:`~secretstorage.item.Item` or
:class:`~secretstorage.collection.Collection` constructors, or by
other functions in the :mod:`secretstorage.collection` module, when
the Secret Service API is not available.r   Nr   r   r   r   r   r      s    0r   r   c                   s    ] tR t^tRtRtR# )LockedExceptionzRaised when an action cannot be performed because the collection
is locked. Use :meth:`~secretstorage.collection.Collection.is_locked`
to check if the collection is locked, and
:meth:`~secretstorage.collection.Collection.unlock` to unlock it.
r   Nr   r   r   r   r   r      s    r   r   c                   s    ] tR t^tRtRtR# )ItemNotFoundExceptiona^  Raised when an item does not exist or has been deleted. Example of
handling:

>>> import secretstorage
>>> connection = secretstorage.dbus_init()
>>> item_path = '/not/existing/path'
>>> try:
...     item = secretstorage.Item(connection, item_path)
... except secretstorage.ItemNotFoundException:
...     print('Item not found!')
...
Item not found!
r   Nr   r   r   r   r   r      s    r   r   c                   s    ] tR t^.tRtRtR# )PromptDismissedExceptionzGRaised when a prompt was dismissed by the user.

.. versionadded:: 3.1
r   Nr   r   r   r   r	   r	   .   s    r   r	   N)r   Z	Exceptionr    r   r   r   r	   r   r   r   <module>r
      sJ   (
1Y 10)? 0, 2  4 r   