28 lines
565 B
Python
28 lines
565 B
Python
from __future__ import unicode_literals
|
|
|
|
from moto.core.exceptions import AWSError
|
|
|
|
|
|
class InvalidInputException(AWSError):
|
|
TYPE = "InvalidInputException"
|
|
|
|
|
|
class ResourceAlreadyExistsException(AWSError):
|
|
TYPE = "ResourceAlreadyExistsException"
|
|
|
|
|
|
class ResourceNotFoundException(AWSError):
|
|
TYPE = "ResourceNotFoundException"
|
|
|
|
|
|
class ResourceInUseException(AWSError):
|
|
TYPE = "ResourceInUseException"
|
|
|
|
|
|
class LimitExceededException(AWSError):
|
|
TYPE = "LimitExceededException"
|
|
|
|
|
|
class ValidationException(AWSError):
|
|
TYPE = "ValidationException"
|