summaryrefslogtreecommitdiff
path: root/java/test/Ice/exceptions/Test.ice
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-12-29 15:06:56 +0000
committerMarc Laukien <marc@zeroc.com>2002-12-29 15:06:56 +0000
commit00d8fea897905ca1f6c5b2e38b1800351140a244 (patch)
tree0435fb7a715a1df5456788341151f7c1631c28e0 /java/test/Ice/exceptions/Test.ice
parentfix (diff)
downloadice-00d8fea897905ca1f6c5b2e38b1800351140a244.tar.bz2
ice-00d8fea897905ca1f6c5b2e38b1800351140a244.tar.xz
ice-00d8fea897905ca1f6c5b2e38b1800351140a244.zip
finished AMI
Diffstat (limited to 'java/test/Ice/exceptions/Test.ice')
-rw-r--r--java/test/Ice/exceptions/Test.ice7
1 files changed, 4 insertions, 3 deletions
diff --git a/java/test/Ice/exceptions/Test.ice b/java/test/Ice/exceptions/Test.ice
index 9d61e5e34ad..c447b24aaf3 100644
--- a/java/test/Ice/exceptions/Test.ice
+++ b/java/test/Ice/exceptions/Test.ice
@@ -41,9 +41,11 @@ exception D
int dMem;
};
-interface Thrower
+["ami"] interface Thrower
{
void shutdown();
+ bool supportsUndeclaredExceptions();
+
void throwAasA(int a) throws A;
void throwAorDasAorD(int a) throws A, D;
void throwBasA(int a, int b) throws A;
@@ -51,7 +53,6 @@ interface Thrower
void throwBasB(int a, int b) throws B;
void throwCasB(int a, int b, int c) throws B;
void throwCasC(int a, int b, int c) throws C;
- bool supportsUndeclaredExceptions();
void throwUndeclaredA(int a);
void throwUndeclaredB(int a, int b);
void throwUndeclaredC(int a, int b, int c);
@@ -59,7 +60,7 @@ interface Thrower
void throwNonIceException();
};
-interface WrongOperation
+["ami"] interface WrongOperation
{
void noSuchOperation();
};