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" )
Memory