Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrbrooks2010-09-17 20:51:15 +0000
committerRyan D. Brooks2010-09-17 20:51:15 +0000
commit445b78e7fdb5067609dd91f8b348ea91313ecedc (patch)
treee3977a856514339190f8384ea849a37d567e635c /plugins/org.eclipse.osee.framework.core
parent9f3a5a2a4e62adf2155550fc5e8feca678db4f45 (diff)
downloadorg.eclipse.osee-445b78e7fdb5067609dd91f8b348ea91313ecedc.tar.gz
org.eclipse.osee-445b78e7fdb5067609dd91f8b348ea91313ecedc.tar.xz
org.eclipse.osee-445b78e7fdb5067609dd91f8b348ea91313ecedc.zip
refactor: Remove unnecessary exception wrapping
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core')
-rw-r--r--plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/util/HttpProcessor.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/util/HttpProcessor.java b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/util/HttpProcessor.java
index bbcec30f9dc..52ad340b090 100644
--- a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/util/HttpProcessor.java
+++ b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/util/HttpProcessor.java
@@ -242,8 +242,6 @@ public class HttpProcessor {
responseInputStream = method.getResponseBodyAsStream();
response = Lib.inputStreamToString(responseInputStream);
}
- } catch (Exception ex) {
- throw new Exception(String.format("Error during POST [%s] - status code: [%s]", url, statusCode), ex);
} finally {
try {
if (responseInputStream != null) {

Back to the top