summaryrefslogtreecommitdiff
path: root/java/test/Ice/exceptions/Test.ice
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2011-11-09 11:16:40 -0800
committerMark Spruiell <mes@zeroc.com>2011-11-09 11:16:40 -0800
commit08cc949eb9ae9112d526a1d1d4d7426df0865f5e (patch)
tree207232f30cc8d6c8b7eeae270a4e1b59c0bbd1a2 /java/test/Ice/exceptions/Test.ice
parentICE-4717 - IceSSL.Alias property not working (diff)
downloadice-08cc949eb9ae9112d526a1d1d4d7426df0865f5e.tar.bz2
ice-08cc949eb9ae9112d526a1d1d4d7426df0865f5e.tar.xz
ice-08cc949eb9ae9112d526a1d1d4d7426df0865f5e.zip
ICE-4734 - generate constructors for empty exceptions in Java
Diffstat (limited to 'java/test/Ice/exceptions/Test.ice')
-rw-r--r--java/test/Ice/exceptions/Test.ice4
1 files changed, 3 insertions, 1 deletions
diff --git a/java/test/Ice/exceptions/Test.ice b/java/test/Ice/exceptions/Test.ice
index be177b20f73..bc099833bb3 100644
--- a/java/test/Ice/exceptions/Test.ice
+++ b/java/test/Ice/exceptions/Test.ice
@@ -20,7 +20,9 @@ interface Empty
interface Thrower;
-exception A
+exception Base {};
+
+exception A extends Base
{
int aMem;
};