| 52 | |
| 53 | |
| 54 | class BinanceOrderMinTotalException(BinanceOrderException): |
| 55 | def __init__(self, value): |
| 56 | message = "Total must be at least %s" % value |
| 57 | super().__init__(-1013, message) |
| 58 | |
| 59 | |
| 60 | class BinanceOrderUnknownSymbolException(BinanceOrderException): |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…