Timeout and retry mechanism for Bitwarden CLI (#670)

This commit is contained in:
Kerem Yilmaz
2024-08-02 12:53:05 -07:00
committed by GitHub
parent 7fd07ece2f
commit e4fd825497
5 changed files with 119 additions and 8 deletions

View File

@@ -278,6 +278,11 @@ class BitwardenLogoutError(BitwardenBaseError):
super().__init__(f"Error logging out of Bitwarden: {message}")
class BitwardenSyncError(BitwardenBaseError):
def __init__(self, message: str) -> None:
super().__init__(f"Error syncing Bitwarden: {message}")
class UnknownElementTreeFormat(SkyvernException):
def __init__(self, fmt: str) -> None:
super().__init__(f"Unknown element tree format {fmt}")