13 lines
405 B
Python
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")
|