11 lines
239 B
Python
11 lines
239 B
Python
from moto.core.exceptions import RESTError
|
|
|
|
|
|
class STSClientError(RESTError):
|
|
code = 400
|
|
|
|
|
|
class STSValidationError(STSClientError):
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__("ValidationError", *args, **kwargs)
|