moto/moto/applicationautoscaling/exceptions.py
2022-10-06 08:37:35 +00:00

7 lines
197 B
Python

from moto.core.exceptions import JsonRESTError
class AWSValidationException(JsonRESTError):
def __init__(self, message: str) -> None:
super().__init__("ValidationException", message)