Source code for activity.errors
from __future__ import annotations
[docs]
class BookingLimitReached(RuntimeError):
def __init__(self) -> None:
super().__init__('The booking limit has been reached')
from __future__ import annotations
[docs]
class BookingLimitReached(RuntimeError):
def __init__(self) -> None:
super().__init__('The booking limit has been reached')