diff options
author | Marc Laukien <marc@zeroc.com> | 2002-09-20 13:12:50 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-09-20 13:12:50 +0000 |
commit | d99db9620ba052e79cd5bd40c75306f600f9c48c (patch) | |
tree | 8b5bf4d7b52f1e60469cb48e6b466e7f4b08c41f /java/src/IceInternal/IncomingConnectionFactory.java | |
parent | minor (diff) | |
download | ice-d99db9620ba052e79cd5bd40c75306f600f9c48c.tar.bz2 ice-d99db9620ba052e79cd5bd40c75306f600f9c48c.tar.xz ice-d99db9620ba052e79cd5bd40c75306f600f9c48c.zip |
Runtime->Local
Diffstat (limited to 'java/src/IceInternal/IncomingConnectionFactory.java')
-rw-r--r-- | java/src/IceInternal/IncomingConnectionFactory.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/src/IceInternal/IncomingConnectionFactory.java b/java/src/IceInternal/IncomingConnectionFactory.java index 631e47d9b5f..21b7fb9026f 100644 --- a/java/src/IceInternal/IncomingConnectionFactory.java +++ b/java/src/IceInternal/IncomingConnectionFactory.java @@ -116,7 +116,7 @@ public class IncomingConnectionFactory extends EventHandler // Ignore timeouts. return; } - catch(Ice.RuntimeException ex) + catch(Ice.LocalException ex) { if(_warn) { @@ -136,7 +136,7 @@ public class IncomingConnectionFactory extends EventHandler connection.activate(); _connections.add(connection); } - catch(Ice.RuntimeException ex) + catch(Ice.LocalException ex) { // // Ignore all exceptions while creating or activating the @@ -172,7 +172,7 @@ public class IncomingConnectionFactory extends EventHandler } public void - exception(Ice.RuntimeException ex) + exception(Ice.LocalException ex) { assert(false); // Must not be called. } @@ -384,7 +384,7 @@ public class IncomingConnectionFactory extends EventHandler } private void - warning(Ice.RuntimeException ex) + warning(Ice.LocalException ex) { java.io.StringWriter sw = new java.io.StringWriter(); java.io.PrintWriter pw = new java.io.PrintWriter(sw); |