25 lines
473 B
Python
25 lines
473 B
Python
from __future__ import unicode_literals
|
|
from moto.core.exceptions import AWSError
|
|
|
|
|
|
class InvalidRequestException(AWSError):
|
|
TYPE = "InvalidRequestException"
|
|
|
|
|
|
class InvalidParameterValueException(AWSError):
|
|
TYPE = "InvalidParameterValue"
|
|
|
|
|
|
class ValidationError(AWSError):
|
|
TYPE = "ValidationError"
|
|
|
|
|
|
class InternalFailure(AWSError):
|
|
TYPE = "InternalFailure"
|
|
STATUS = 500
|
|
|
|
|
|
class ClientException(AWSError):
|
|
TYPE = "ClientException"
|
|
STATUS = 400
|