Skip to content

Exceptions#

Awscliv2 Index / Awscliv2 / Exceptions

Auto-generated documentation for awscliv2.exceptions module.

AWSCLIError#

Show source in exceptions.py:6

Main error for awscliv2.

Signature#

class AWSCLIError(BaseException):
    def __init__(self, msg: str = "", returncode: int = 1) -> None: ...

AWSCLIError().str#

Show source in exceptions.py:16

Represent as a string.

Signature#

def __str__(self) -> str: ...

ExecutableNotFoundError#

Show source in exceptions.py:35

Subprocess cannot find an executable error.

Signature#

class ExecutableNotFoundError(BaseException): ...

InstallError#

Show source in exceptions.py:23

AWS CLi v2 installer error.

Signature#

class InstallError(AWSCLIError): ...

See also#

SubprocessError#

Show source in exceptions.py:29

Subprocess interrupted error.

Signature#

class SubprocessError(BaseException): ...