Skip to content

Exceptions

cyhole.birdeye.exception

BirdeyeException

BirdeyeException(description)

Bases: CyholeException

Source code in src/cyhole/core/exception.py
8
9
def __init__(self, description):
    self.description = description

BirdeyeAuthorisationError

BirdeyeAuthorisationError(
    description: str = "The API Key is not authorised to use this endpoint.",
)

Bases: BirdeyeException

Source code in src/cyhole/birdeye/exception.py
7
8
def __init__(self, description: str = "The API Key is not authorised to use this endpoint."):
    super().__init__(description)

BirdeyeTimeRangeError

BirdeyeTimeRangeError(description)

Bases: BirdeyeException

Source code in src/cyhole/core/exception.py
8
9
def __init__(self, description):
    self.description = description