8 lines
227 B
Python
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")
|