Exception for when a client request is cancelled. This happens when the server is shutting down and all the pending requests will be cancelled and return with this error.
| 53 | |
| 54 | |
| 55 | class RPCCancelled(RPCError): |
| 56 | """Exception for when a client request is cancelled. |
| 57 | This happens when the server is shutting down and all the pending |
| 58 | requests will be cancelled and return with this error. |
| 59 | """ |
| 60 | |
| 61 | |
| 62 | class RPCStreamingError(RPCError): |
no outgoing calls
no test coverage detected