Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Swanson2003-10-16 23:44:19 +0000
committerDarin Swanson2003-10-16 23:44:19 +0000
commit530c6c727fca7a2631950e936cc716f01e078a59 (patch)
treee68951f8e739df58c6345433420e3ce2fca5c6af /org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchHistory.java
parent9c93f06c034bd2bba932d19b5d5f4207ef38302e (diff)
downloadeclipse.platform.debug-530c6c727fca7a2631950e936cc716f01e078a59.tar.gz
eclipse.platform.debug-530c6c727fca7a2631950e936cc716f01e078a59.tar.xz
eclipse.platform.debug-530c6c727fca7a2631950e936cc716f01e078a59.zip
Bug 44934 - Remove dependancies on Xerces plugin
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchHistory.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchHistory.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchHistory.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchHistory.java
index 9e3864279..559718041 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchHistory.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchHistory.java
@@ -16,6 +16,9 @@ import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
+import javax.xml.parsers.ParserConfigurationException;
+import javax.xml.transform.TransformerException;
+
import org.eclipse.core.runtime.CoreException;
import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.ILaunch;
@@ -119,6 +122,10 @@ public class LaunchHistory implements ILaunchListener, ILaunchConfigurationListe
DebugUIPlugin.log(e);
} catch (IOException e) {
DebugUIPlugin.log(e);
+ } catch (ParserConfigurationException e) {
+ DebugUIPlugin.log(e);
+ } catch (TransformerException e) {
+ DebugUIPlugin.log(e);
}
}
}

Back to the top