Add credentials table, CRUD endpoints, and credential parameter (#1767)
Co-authored-by: Muhammed Salih Altun <muhammedsalihaltun@gmail.com>
This commit is contained in:
@@ -309,6 +309,16 @@ class BitwardenAccessDeniedError(BitwardenBaseError):
|
||||
)
|
||||
|
||||
|
||||
class CredentialParameterParsingError(SkyvernException):
|
||||
def __init__(self, message: str) -> None:
|
||||
super().__init__(f"Error parsing credential parameter: {message}")
|
||||
|
||||
|
||||
class CredentialParameterNotFoundError(SkyvernException):
|
||||
def __init__(self, credential_parameter_id: str) -> None:
|
||||
super().__init__(f"Could not find credential parameter: {credential_parameter_id}")
|
||||
|
||||
|
||||
class UnknownElementTreeFormat(SkyvernException):
|
||||
def __init__(self, fmt: str) -> None:
|
||||
super().__init__(f"Unknown element tree format {fmt}")
|
||||
|
||||
Reference in New Issue
Block a user