Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2009-11-11 06:39:14 +0000
committerEike Stepper2009-11-11 06:39:14 +0000
commit3c482c3ee91c6499e6e5b43deae3bd75ca113817 (patch)
treef77572bf5327df2c5257cdc0bdb483b916dad2d8 /plugins/org.eclipse.net4j.http.common
parentddf2fe8740c161bec5d0eb6ad0eb064a33374bc6 (diff)
downloadcdo-3c482c3ee91c6499e6e5b43deae3bd75ca113817.tar.gz
cdo-3c482c3ee91c6499e6e5b43deae3bd75ca113817.tar.xz
cdo-3c482c3ee91c6499e6e5b43deae3bd75ca113817.zip
[294838] TimeoutException on session refresh
https://bugs.eclipse.org/bugs/show_bug.cgi?id=294838
Diffstat (limited to 'plugins/org.eclipse.net4j.http.common')
-rw-r--r--plugins/org.eclipse.net4j.http.common/src/org/eclipse/net4j/http/internal/common/HTTPChannel.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/org.eclipse.net4j.http.common/src/org/eclipse/net4j/http/internal/common/HTTPChannel.java b/plugins/org.eclipse.net4j.http.common/src/org/eclipse/net4j/http/internal/common/HTTPChannel.java
index 9265099716..de77fd3de1 100644
--- a/plugins/org.eclipse.net4j.http.common/src/org/eclipse/net4j/http/internal/common/HTTPChannel.java
+++ b/plugins/org.eclipse.net4j.http.common/src/org/eclipse/net4j/http/internal/common/HTTPChannel.java
@@ -4,13 +4,14 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.net4j.http.internal.common;
import org.eclipse.net4j.http.internal.common.HTTPConnector.ChannelOperation;
+import org.eclipse.net4j.util.WrappedException;
import org.eclipse.spi.net4j.Channel;
@@ -79,8 +80,9 @@ public class HTTPChannel extends Channel
{
openAck.await(timeout, TimeUnit.MILLISECONDS);
}
- catch (InterruptedException ignore)
+ catch (InterruptedException ex)
{
+ throw WrappedException.wrap(ex);
}
}

Back to the top