| 64 | |
| 65 | |
| 66 | class BinanceOrderInactiveSymbolException(BinanceOrderException): |
| 67 | def __init__(self, value): |
| 68 | message = "Attempting to trade an inactive symbol %s" % value |
| 69 | super().__init__(-1013, message) |
| 70 | |
| 71 | |
| 72 | class BinanceWebsocketUnableToConnect(Exception): |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…