"""Exceptions raised by the opensearch service.""" from moto.core.exceptions import JsonRESTError class ResourceNotFoundException(JsonRESTError): code = 409 def __init__(self, name: str): super().__init__("ResourceNotFoundException", f"Domain not found: {name}") class EngineTypeNotFoundException(JsonRESTError): def __init__(self, domain_name: str): super().__init__( "EngineTypeNotFoundException", f"Engine Type not found: {domain_name}" )
Memory