Merge pull request #4139 from grpc/release-0_11

Merge release-0_11 into master
pull/4096/head^2
Jan Tattermusch 9 years ago
commit 7fc77e06ba
  1. 4
      src/python/grpcio/grpc/framework/interfaces/face/face.py

@ -117,6 +117,10 @@ class AbortionError(Exception):
self.code = code
self.details = details
def __str__(self):
return '%s(code=%s, details="%s")' % (
self.__class__.__name__, self.code, self.details)
class CancellationError(AbortionError):
"""Indicates that an RPC has been cancelled."""

Loading…
Cancel
Save