diff options
Diffstat (limited to 'java/test/Ice/exceptions/ThrowerI.java')
-rw-r--r-- | java/test/Ice/exceptions/ThrowerI.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/test/Ice/exceptions/ThrowerI.java b/java/test/Ice/exceptions/ThrowerI.java index 1abf04d7727..e30753ba812 100644 --- a/java/test/Ice/exceptions/ThrowerI.java +++ b/java/test/Ice/exceptions/ThrowerI.java @@ -101,7 +101,7 @@ public final class ThrowerI extends _ThrowerDisp } public void - throwLocalException(Ice.Current current) + throwRuntimeException(Ice.Current current) { throw new Ice.TimeoutException(); } @@ -109,7 +109,7 @@ public final class ThrowerI extends _ThrowerDisp public void throwNonIceException(Ice.Current current) { - throw new RuntimeException(); + throw new java.lang.RuntimeException(); } public void |