11 lines
365 B
Python
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.",
|
|
)
|