diff options
author | Mark Spruiell <mes@zeroc.com> | 2011-11-09 11:16:40 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2011-11-09 11:16:40 -0800 |
commit | 08cc949eb9ae9112d526a1d1d4d7426df0865f5e (patch) | |
tree | 207232f30cc8d6c8b7eeae270a4e1b59c0bbd1a2 /java/test/Ice/exceptions/Test.ice | |
parent | ICE-4717 - IceSSL.Alias property not working (diff) | |
download | ice-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.ice | 4 |
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; }; |