Skip to content

error ¤

LetLiveAPIUnauthorizedException ¤

LetLiveAPIUnauthorizedException(
    *args: object, raw: dict = None
)

Bases: LetLiveException

API Unauthorized exception

Source code in lettrade/exchange/live/error.py
 8
 9
10
def __init__(self, *args: object, raw: dict = None) -> None:
    super().__init__(*args)
    self.raw = raw

LetLiveOrderInvalidException ¤

LetLiveOrderInvalidException(
    *args: object, raw: dict = None
)

Bases: LetLiveException, LetOrderInvalidException

Live order place is invalid exception

Source code in lettrade/exchange/live/error.py
 8
 9
10
def __init__(self, *args: object, raw: dict = None) -> None:
    super().__init__(*args)
    self.raw = raw