Add SNS applications and endpoints.
This commit is contained in:
parent
0ca3b7f69d
commit
706c60175b
5 changed files with 503 additions and 16 deletions
10
moto/sns/exceptions.py
Normal file
10
moto/sns/exceptions.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
from __future__ import unicode_literals
|
||||
from moto.core.exceptions import RESTError
|
||||
|
||||
|
||||
class SNSNotFoundError(RESTError):
|
||||
code = 404
|
||||
|
||||
def __init__(self, message):
|
||||
super(SNSNotFoundError, self).__init__(
|
||||
"NotFound", message)
|
||||
Loading…
Add table
Add a link
Reference in a new issue