diff options
author | Benoit Foucher <benoit@zeroc.com> | 2013-01-07 16:20:00 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2013-01-07 16:20:00 +0100 |
commit | f68bda81245047d672879dbb90e55b4446ffa71b (patch) | |
tree | 4334915e140af70af74f1d8b2a32eba6bf97f57f /java/test/Ice/exceptions/AMDThrowerI.java | |
parent | Added missing RemoteObserverI.java file (diff) | |
download | ice-f68bda81245047d672879dbb90e55b4446ffa71b.tar.bz2 ice-f68bda81245047d672879dbb90e55b4446ffa71b.tar.xz ice-f68bda81245047d672879dbb90e55b4446ffa71b.zip |
Fixed ICE-5150: assert in OutgoingAsync._finished, fixed CHANGES
Diffstat (limited to 'java/test/Ice/exceptions/AMDThrowerI.java')
-rw-r--r-- | java/test/Ice/exceptions/AMDThrowerI.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/java/test/Ice/exceptions/AMDThrowerI.java b/java/test/Ice/exceptions/AMDThrowerI.java index 5b67f4ed442..3f0c04c6ec0 100644 --- a/java/test/Ice/exceptions/AMDThrowerI.java +++ b/java/test/Ice/exceptions/AMDThrowerI.java @@ -22,6 +22,7 @@ import test.Ice.exceptions.AMD.Test.AMD_Thrower_throwCasA; import test.Ice.exceptions.AMD.Test.AMD_Thrower_throwCasB; import test.Ice.exceptions.AMD.Test.AMD_Thrower_throwCasC; import test.Ice.exceptions.AMD.Test.AMD_Thrower_throwLocalException; +import test.Ice.exceptions.AMD.Test.AMD_Thrower_throwLocalExceptionIdempotent; import test.Ice.exceptions.AMD.Test.AMD_Thrower_throwNonIceException; import test.Ice.exceptions.AMD.Test.AMD_Thrower_throwUndeclaredA; import test.Ice.exceptions.AMD.Test.AMD_Thrower_throwUndeclaredB; @@ -188,6 +189,12 @@ public final class AMDThrowerI extends _ThrowerDisp } public void + throwLocalExceptionIdempotent_async(AMD_Thrower_throwLocalExceptionIdempotent cb, Ice.Current current) + { + cb.ice_exception(new Ice.TimeoutException()); + } + + public void throwAfterResponse_async(AMD_Thrower_throwAfterResponse cb, Ice.Current current) { cb.ice_response(); |