moto/moto/sns/exceptions.py
2015-03-14 09:06:31 -04:00

11 lines
250 B
Python

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)