9 lines
254 B
Python
9 lines
254 B
Python
from moto.core.exceptions import JsonRESTError
|
|
|
|
|
|
class AWSValidationException(JsonRESTError):
|
|
def __init__(self, message, **kwargs):
|
|
super(AWSValidationException, self).__init__(
|
|
"ValidationException", message, **kwargs
|
|
)
|