diff options
author | Mark Spruiell <mes@zeroc.com> | 2010-05-21 14:03:30 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2010-05-21 14:03:30 -0700 |
commit | 01e3d1af5c5e19d74d391a8998495df59f6c4ce8 (patch) | |
tree | a94485661f2eb28ce4b1cb29fabf34c3fddf7c8d /java/test/Ice/exceptions/ThrowerI.java | |
parent | Various changes for 3.4.1 installers (diff) | |
download | ice-01e3d1af5c5e19d74d391a8998495df59f6c4ce8.tar.bz2 ice-01e3d1af5c5e19d74d391a8998495df59f6c4ce8.tar.xz ice-01e3d1af5c5e19d74d391a8998495df59f6c4ce8.zip |
bug 4733 - fixing bugs in AMD exceptions
Diffstat (limited to 'java/test/Ice/exceptions/ThrowerI.java')
-rw-r--r-- | java/test/Ice/exceptions/ThrowerI.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/java/test/Ice/exceptions/ThrowerI.java b/java/test/Ice/exceptions/ThrowerI.java index dfc5aff7eb4..00471c8011e 100644 --- a/java/test/Ice/exceptions/ThrowerI.java +++ b/java/test/Ice/exceptions/ThrowerI.java @@ -148,4 +148,22 @@ public final class ThrowerI extends _ThrowerDisp { throw new java.lang.AssertionError(); } + + public void + throwAfterResponse(Ice.Current current) + { + // + // Only relevant for AMD. + // + } + + public void + throwAfterException(Ice.Current current) + throws A + { + // + // Only relevant for AMD. + // + throw new A(); + } } |