1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
from moto.core.exceptions import AWSError
class ExecutionAlreadyExists(AWSError):
TYPE = "ExecutionAlreadyExists"
STATUS = 400
class ExecutionDoesNotExist(AWSError):
TYPE = "ExecutionDoesNotExist"
STATUS = 400
class InvalidArn(AWSError):
TYPE = "InvalidArn"
STATUS = 400
class InvalidName(AWSError):
TYPE = "InvalidName"
STATUS = 400
class InvalidExecutionInput(AWSError):
TYPE = "InvalidExecutionInput"
STATUS = 400
class StateMachineDoesNotExist(AWSError):
TYPE = "StateMachineDoesNotExist"
STATUS = 400
class InvalidToken(AWSError):
TYPE = "InvalidToken"
STATUS = 400
def __init__(self, message: str = "Invalid token"):
super().__init__(f"Invalid Token: {message}")
class ResourceNotFound(AWSError):
TYPE = "ResourceNotFound"
STATUS = 400
def __init__(self, arn: str):
super().__init__(f"Resource not found: '{arn}'")
class ValidationException(AWSError):
TYPE = "ValidationException"
def __init__(self, msg: str):
super().__init__(msg)
class NameTooLongException(ValidationException):
def __init__(self, name: str):
super().__init__(
f"1 validation error detected: Value '{name}' at 'name' "
"failed to satisfy constraint: Member must have length less than or equal to 80"
)
class InvalidEncryptionConfiguration(AWSError):
TYPE = "InvalidEncryptionConfiguration"
STATUS = 400
class ActivityDoesNotExist(AWSError):
TYPE = "ActivityDoesNotExist"
STATUS = 400
class ActivityAlreadyExists(AWSError):
TYPE = "ActivityAlreadyExists"
STATUS = 400
|