Skip to content

Exceptions

cyhole.birdeye.exception

BirdeyeException

BirdeyeException(description)

Bases: CyholeException


              flowchart TD
              cyhole.birdeye.exception.BirdeyeException[BirdeyeException]
              cyhole.core.exception.CyholeException[CyholeException]

                              cyhole.core.exception.CyholeException --> cyhole.birdeye.exception.BirdeyeException
                


              click cyhole.birdeye.exception.BirdeyeException href "" "cyhole.birdeye.exception.BirdeyeException"
              click cyhole.core.exception.CyholeException href "" "cyhole.core.exception.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


              flowchart TD
              cyhole.birdeye.exception.BirdeyeAuthorisationError[BirdeyeAuthorisationError]
              cyhole.birdeye.exception.BirdeyeException[BirdeyeException]
              cyhole.core.exception.CyholeException[CyholeException]

                              cyhole.birdeye.exception.BirdeyeException --> cyhole.birdeye.exception.BirdeyeAuthorisationError
                                cyhole.core.exception.CyholeException --> cyhole.birdeye.exception.BirdeyeException
                



              click cyhole.birdeye.exception.BirdeyeAuthorisationError href "" "cyhole.birdeye.exception.BirdeyeAuthorisationError"
              click cyhole.birdeye.exception.BirdeyeException href "" "cyhole.birdeye.exception.BirdeyeException"
              click cyhole.core.exception.CyholeException href "" "cyhole.core.exception.CyholeException"
            
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


              flowchart TD
              cyhole.birdeye.exception.BirdeyeTimeRangeError[BirdeyeTimeRangeError]
              cyhole.birdeye.exception.BirdeyeException[BirdeyeException]
              cyhole.core.exception.CyholeException[CyholeException]

                              cyhole.birdeye.exception.BirdeyeException --> cyhole.birdeye.exception.BirdeyeTimeRangeError
                                cyhole.core.exception.CyholeException --> cyhole.birdeye.exception.BirdeyeException
                



              click cyhole.birdeye.exception.BirdeyeTimeRangeError href "" "cyhole.birdeye.exception.BirdeyeTimeRangeError"
              click cyhole.birdeye.exception.BirdeyeException href "" "cyhole.birdeye.exception.BirdeyeException"
              click cyhole.core.exception.CyholeException href "" "cyhole.core.exception.CyholeException"
            
Source code in src/cyhole/core/exception.py
8
9
def __init__(self, description):
    self.description = description