diff options
author | Benoit Foucher <benoit@zeroc.com> | 2009-09-09 14:55:38 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2009-09-09 14:55:38 +0200 |
commit | fbe6ac868d262e65924fc6ff436bcfeac06c3b79 (patch) | |
tree | 10bfb7b150e0241d8bfb4605d5b6d644cd572af6 /java/src/IceInternal/ConnectRequestHandler.java | |
parent | Update DB patch for unicode issues with oracle revised patch (diff) | |
download | ice-fbe6ac868d262e65924fc6ff436bcfeac06c3b79.tar.bz2 ice-fbe6ac868d262e65924fc6ff436bcfeac06c3b79.tar.xz ice-fbe6ac868d262e65924fc6ff436bcfeac06c3b79.zip |
Fixed bug 4146 - re-throwing exception with fillInStackTrace
Diffstat (limited to 'java/src/IceInternal/ConnectRequestHandler.java')
-rw-r--r-- | java/src/IceInternal/ConnectRequestHandler.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/IceInternal/ConnectRequestHandler.java b/java/src/IceInternal/ConnectRequestHandler.java index b7b55502eea..2b8a18881ac 100644 --- a/java/src/IceInternal/ConnectRequestHandler.java +++ b/java/src/IceInternal/ConnectRequestHandler.java @@ -238,7 +238,7 @@ public class ConnectRequestHandler if(_exception != null) { - throw _exception; + throw (Ice.LocalException)_exception.fillInStackTrace(); } else { @@ -359,7 +359,7 @@ public class ConnectRequestHandler if(_exception != null) { - throw _exception; + throw (Ice.LocalException)_exception.fillInStackTrace(); } else { |