Refactory: remove unused classes, imports, fields and methods.
authorincastrix <incastrix>
Wed, 23 Dec 2009 17:50:14 +0000 (17:50 +0000)
committerincastrix <incastrix>
Wed, 23 Dec 2009 17:50:14 +0000 (17:50 +0000)
net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/internal/ui/PHPUIException.java [new file with mode: 0644]

diff --git a/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/internal/ui/PHPUIException.java b/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpdt/internal/ui/PHPUIException.java
new file mode 100644 (file)
index 0000000..4db626b
--- /dev/null
@@ -0,0 +1,20 @@
+/*
+ * (c) Copyright IBM Corp. 2000, 2001.
+ * All Rights Reserved.
+ */
+package net.sourceforge.phpdt.internal.ui;
+
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.IStatus;
+
+/**
+ * An exception to wrap a status. This is necessary to use the core's
+ * IRunnableWithProgress support
+ */
+
+public class PHPUIException extends CoreException {
+
+       public PHPUIException(IStatus status) {
+               super(status);
+       }
+}
\ No newline at end of file