Skip to content

Commit

Permalink
Create custom exceptions and link it to website
Browse files Browse the repository at this point in the history
  • Loading branch information
abuabraham-ttd committed Dec 27, 2024
1 parent cd730d3 commit 0adb2c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/aws/ec2.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def add_defaults(configs: Dict[str, any]) -> AWSConfidentialComputeConfig:
except NoCredentialsError as _:
raise MissingInstanceProfile(self.__class__.__name__)
except ClientError as _:
raise ConfigNotFound(self.__class__.__name__, f"{secret_identifier} in {region}")
raise ConfigNotFound(self.__class__.__name__, f"Secret Manager {secret_identifier} in {region}")

@staticmethod
def __get_max_capacity():
Expand Down

0 comments on commit 0adb2c7

Please sign in to comment.