ddbtools/table.py [157:163]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        try:
            response = self.dynamodb_client.describe_table(TableName=table_name)
        except Exception as e:
            raise Exception(f"Failed to describe table {table_name}: {e}.") from None

        table_data = response['Table']
        table_arn = table_data['TableArn']
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



ddbtools/table.py [193:199]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        try:
            response = self.dynamodb_client.describe_table(TableName=table_name)
        except Exception as e:
            raise Exception(f"Failed to describe table {table_name}: {e}.") from None

        table_data = response['Table']
        table_arn = table_data['TableArn']
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



