summaryrefslogtreecommitdiff
path: root/java/src/Ice/_ObjectDelM.java
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2006-03-14 12:47:12 +0000
committerDwayne Boone <dwayne@zeroc.com>2006-03-14 12:47:12 +0000
commit4ec329c60555de5562c72df0e2fc583d591bf84d (patch)
tree86eb4af9aac33fc6277bed19d8936c4ffdbcd2d5 /java/src/Ice/_ObjectDelM.java
parentFixed http://www.zeroc.com/vbulletin/showthread.php?p=9533#post9533 (diff)
downloadice-4ec329c60555de5562c72df0e2fc583d591bf84d.tar.bz2
ice-4ec329c60555de5562c72df0e2fc583d591bf84d.tar.xz
ice-4ec329c60555de5562c72df0e2fc583d591bf84d.zip
Ported fix for bug 574.
Diffstat (limited to 'java/src/Ice/_ObjectDelM.java')
-rw-r--r--java/src/Ice/_ObjectDelM.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/java/src/Ice/_ObjectDelM.java b/java/src/Ice/_ObjectDelM.java
index c6301ce909d..6a5501e170c 100644
--- a/java/src/Ice/_ObjectDelM.java
+++ b/java/src/Ice/_ObjectDelM.java
@@ -13,7 +13,7 @@ public class _ObjectDelM implements _ObjectDel
{
public boolean
ice_isA(String __id, java.util.Map __context)
- throws IceInternal.NonRepeatable
+ throws IceInternal.LocalExceptionWrapper
{
IceInternal.Outgoing __og = __connection.getOutgoing(__reference, "ice_isA", OperationMode.Nonmutating,
__context, __compress);
@@ -47,7 +47,7 @@ public class _ObjectDelM implements _ObjectDel
}
catch(LocalException __ex)
{
- throw new IceInternal.NonRepeatable(__ex);
+ throw new IceInternal.LocalExceptionWrapper(__ex, false);
}
}
finally
@@ -58,7 +58,7 @@ public class _ObjectDelM implements _ObjectDel
public void
ice_ping(java.util.Map __context)
- throws IceInternal.NonRepeatable
+ throws IceInternal.LocalExceptionWrapper
{
IceInternal.Outgoing __og = __connection.getOutgoing(__reference, "ice_ping", OperationMode.Nonmutating,
__context, __compress);
@@ -82,7 +82,7 @@ public class _ObjectDelM implements _ObjectDel
}
catch(LocalException __ex)
{
- throw new IceInternal.NonRepeatable(__ex);
+ throw new IceInternal.LocalExceptionWrapper(__ex, false);
}
}
finally
@@ -93,7 +93,7 @@ public class _ObjectDelM implements _ObjectDel
public String[]
ice_ids(java.util.Map __context)
- throws IceInternal.NonRepeatable
+ throws IceInternal.LocalExceptionWrapper
{
IceInternal.Outgoing __og = __connection.getOutgoing(__reference, "ice_ids", OperationMode.Nonmutating,
__context, __compress);
@@ -118,7 +118,7 @@ public class _ObjectDelM implements _ObjectDel
}
catch(LocalException __ex)
{
- throw new IceInternal.NonRepeatable(__ex);
+ throw new IceInternal.LocalExceptionWrapper(__ex, false);
}
}
finally
@@ -129,7 +129,7 @@ public class _ObjectDelM implements _ObjectDel
public String
ice_id(java.util.Map __context)
- throws IceInternal.NonRepeatable
+ throws IceInternal.LocalExceptionWrapper
{
IceInternal.Outgoing __og = __connection.getOutgoing(__reference, "ice_id", OperationMode.Nonmutating,
__context, __compress);
@@ -154,7 +154,7 @@ public class _ObjectDelM implements _ObjectDel
}
catch(LocalException __ex)
{
- throw new IceInternal.NonRepeatable(__ex);
+ throw new IceInternal.LocalExceptionWrapper(__ex, false);
}
}
finally
@@ -165,7 +165,7 @@ public class _ObjectDelM implements _ObjectDel
public boolean
ice_invoke(String operation, OperationMode mode, byte[] inParams, ByteSeqHolder outParams, java.util.Map __context)
- throws IceInternal.NonRepeatable
+ throws IceInternal.LocalExceptionWrapper
{
IceInternal.Outgoing __og = __connection.getOutgoing(__reference, operation, mode, __context, __compress);
try
@@ -196,7 +196,7 @@ public class _ObjectDelM implements _ObjectDel
}
catch(LocalException __ex)
{
- throw new IceInternal.NonRepeatable(__ex);
+ throw new IceInternal.LocalExceptionWrapper(__ex, false);
}
}
return ok;