diff options
Diffstat (limited to 'py/test/Ice/exceptions/ServerAMD.py')
-rwxr-xr-x | py/test/Ice/exceptions/ServerAMD.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/py/test/Ice/exceptions/ServerAMD.py b/py/test/Ice/exceptions/ServerAMD.py index 61b8a7e717c..a11a54f0c23 100755 --- a/py/test/Ice/exceptions/ServerAMD.py +++ b/py/test/Ice/exceptions/ServerAMD.py @@ -109,6 +109,9 @@ class ThrowerI(Test.Thrower): def throwAssertException_async(self, cb, current=None): raise RuntimeError("operation `throwAssertException' not supported") + def throwLocalExceptionIdempotent_async(self, cb, current=None): + cb.ice_exception(Ice.TimeoutException()) + def throwAfterResponse_async(self, cb, current=None): cb.ice_response() raise RuntimeError("12345") |