moto/moto/scheduler/exceptions.py
2023-04-10 16:00:15 +00:00

13 lines
405 B
Python

"""Exceptions raised by the scheduler service."""
from moto.core.exceptions import JsonRESTError
class ScheduleNotFound(JsonRESTError):
def __init__(self) -> None:
super().__init__("ResourceNotFoundException", "Schedule not found")
class ScheduleGroupNotFound(JsonRESTError):
def __init__(self) -> None:
super().__init__("ResourceNotFoundException", "ScheduleGroup not found")