moto/moto/servicequotas/exceptions.py
2022-10-11 22:09:17 +00:00

11 lines
365 B
Python

"""Exceptions raised by the servicequotas service."""
from moto.core.exceptions import JsonRESTError
class NoSuchResource(JsonRESTError):
def __init__(self) -> None:
super().__init__(
"NoSuchResourceException",
"This service is not available in the current Region. Choose a different Region or a different service.",
)