Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rapicault2011-02-02 03:06:32 +0000
committerPascal Rapicault2011-02-02 03:06:32 +0000
commit84324fdd00154afb3f875b322d07a5590888299b (patch)
tree8f1b17daa5687c8cbff37947e784d991b410df25 /bundles/org.eclipse.equinox.p2.metadata.repository
parent82b84b4da97a2501fdf49e7dc07d8df966264ad8 (diff)
downloadrt.equinox.p2-84324fdd00154afb3f875b322d07a5590888299b.tar.gz
rt.equinox.p2-84324fdd00154afb3f875b322d07a5590888299b.tar.xz
rt.equinox.p2-84324fdd00154afb3f875b322d07a5590888299b.zip
Fix invalid API usage.
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.metadata.repository')
-rw-r--r--bundles/org.eclipse.equinox.p2.metadata.repository/src/org/eclipse/equinox/p2/metadata/io/IUDeserializer.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.p2.metadata.repository/src/org/eclipse/equinox/p2/metadata/io/IUDeserializer.java b/bundles/org.eclipse.equinox.p2.metadata.repository/src/org/eclipse/equinox/p2/metadata/io/IUDeserializer.java
index a8546d55b..0f8493bae 100644
--- a/bundles/org.eclipse.equinox.p2.metadata.repository/src/org/eclipse/equinox/p2/metadata/io/IUDeserializer.java
+++ b/bundles/org.eclipse.equinox.p2.metadata.repository/src/org/eclipse/equinox/p2/metadata/io/IUDeserializer.java
@@ -66,9 +66,9 @@ public class IUDeserializer {
}
throw new IOException(status.toString());
} catch (ParserConfigurationException configException) {
- throw new IOException(configException);
+ throw new IOException(configException.getMessage());
} catch (SAXException saxException) {
- throw new IOException(saxException);
+ throw new IOException(saxException.getMessage());
}
}

Back to the top