29 lines
820 B
Python
29 lines
820 B
Python
from __future__ import unicode_literals
|
|
from moto.core.exceptions import JsonRESTError
|
|
|
|
|
|
class IoTDataPlaneClientError(JsonRESTError):
|
|
code = 400
|
|
|
|
|
|
class ResourceNotFoundException(IoTDataPlaneClientError):
|
|
def __init__(self):
|
|
self.code = 404
|
|
super(ResourceNotFoundException, self).__init__(
|
|
"ResourceNotFoundException", "The specified resource does not exist"
|
|
)
|
|
|
|
|
|
class InvalidRequestException(IoTDataPlaneClientError):
|
|
def __init__(self, message):
|
|
self.code = 400
|
|
super(InvalidRequestException, self).__init__(
|
|
"InvalidRequestException", message
|
|
)
|
|
|
|
|
|
class ConflictException(IoTDataPlaneClientError):
|
|
def __init__(self, message):
|
|
self.code = 409
|
|
super(ConflictException, self).__init__("ConflictException", message)
|