MCPcopy Create free account
hub / github.com/sammchardy/python-binance / __init__

Method __init__

binance/exceptions.py:34–36  ·  view source on GitHub ↗
(self, code, message)

Source from the content-addressed store, hash-verified

32
33class BinanceOrderException(Exception):
34 def __init__(self, code, message):
35 self.code = code
36 self.message = message
37
38 def __str__(self):
39 return "BinanceOrderException(code=%s): %s" % (self.code, self.message)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected