72 lines
2.1 KiB
Python
72 lines
2.1 KiB
Python
"""Exceptions raised by the cloudtrail service."""
|
|
from moto.core.exceptions import JsonRESTError
|
|
|
|
|
|
class InvalidParameterCombinationException(JsonRESTError):
|
|
code = 400
|
|
|
|
def __init__(self, message):
|
|
super().__init__("InvalidParameterCombinationException", message)
|
|
|
|
|
|
class S3BucketDoesNotExistException(JsonRESTError):
|
|
code = 400
|
|
|
|
def __init__(self, message):
|
|
super().__init__("S3BucketDoesNotExistException", message)
|
|
|
|
|
|
class InsufficientSnsTopicPolicyException(JsonRESTError):
|
|
code = 400
|
|
|
|
def __init__(self, message):
|
|
super().__init__("InsufficientSnsTopicPolicyException", message)
|
|
|
|
|
|
class TrailNotFoundException(JsonRESTError):
|
|
code = 400
|
|
|
|
def __init__(self, account_id, name):
|
|
super().__init__(
|
|
"TrailNotFoundException",
|
|
f"Unknown trail: {name} for the user: {account_id}",
|
|
)
|
|
|
|
|
|
class InvalidTrailNameException(JsonRESTError):
|
|
code = 400
|
|
|
|
def __init__(self, message):
|
|
super().__init__("InvalidTrailNameException", message)
|
|
|
|
|
|
class TrailNameTooShort(InvalidTrailNameException):
|
|
def __init__(self, actual_length):
|
|
super().__init__(
|
|
f"Trail name too short. Minimum allowed length: 3 characters. Specified name length: {actual_length} characters."
|
|
)
|
|
|
|
|
|
class TrailNameTooLong(InvalidTrailNameException):
|
|
def __init__(self, actual_length):
|
|
super().__init__(
|
|
f"Trail name too long. Maximum allowed length: 128 characters. Specified name length: {actual_length} characters."
|
|
)
|
|
|
|
|
|
class TrailNameNotStartingCorrectly(InvalidTrailNameException):
|
|
def __init__(self):
|
|
super().__init__("Trail name must starts with a letter or number.")
|
|
|
|
|
|
class TrailNameNotEndingCorrectly(InvalidTrailNameException):
|
|
def __init__(self):
|
|
super().__init__("Trail name must ends with a letter or number.")
|
|
|
|
|
|
class TrailNameInvalidChars(InvalidTrailNameException):
|
|
def __init__(self):
|
|
super().__init__(
|
|
"Trail name or ARN can only contain uppercase letters, lowercase letters, numbers, periods (.), hyphens (-), and underscores (_)."
|
|
)
|