moto/moto/ssoadmin/exceptions.py
2022-01-07 15:28:29 -01:00

8 lines
227 B
Python

"""Exceptions raised by the ssoadmin service."""
from moto.core.exceptions import JsonRESTError
class ResourceNotFound(JsonRESTError):
def __init__(self):
super().__init__("ResourceNotFound", "Account not found")