(self, endpoint, startup_version)
| 423 | Server rejected startup message due to unsupported protocol version |
| 424 | """ |
| 425 | def __init__(self, endpoint, startup_version): |
| 426 | msg = "Unsupported protocol version on %s: %d" % (endpoint, startup_version) |
| 427 | super(ProtocolVersionUnsupported, self).__init__(msg, endpoint) |
| 428 | self.startup_version = startup_version |
| 429 | |
| 430 | |
| 431 | class ConnectionBusy(Exception): |